Vertically centering a div in body?

后端 未结 5 2124
灰色年华
灰色年华 2020-12-14 02:26

I have tried to center this vertically in body (not horizontally). Also, I do not want to specify heights or anything like that. I tried adding a wrapper with a

5条回答
  •  余生分开走
    2020-12-14 03:20

    this worked for me:

    Style.css

    div {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    

    I found this code snippet here.

提交回复
热议问题