CSS : center form in page horizontally and vertically

后端 未结 6 1638
执念已碎
执念已碎 2020-12-13 01:33

How can i center the form called form_login horizontally and vertically in my page ?

Here is the HTML I\'m using right now:


    
6条回答
  •  北荒
    北荒 (楼主)
    2020-12-13 02:02

    How about using a grid? it's 2019 and support is reasonable

    body {
      margin: 0;
      padding: 0;
      background-color: red;
    }
    
    .content {
      display: grid;
      background-color: bisque;
      height: 100vh;
      place-items: center;
    }
    
    
    
    
    Information:

提交回复
热议问题