CSS : center form in page horizontally and vertically

后端 未结 6 1610
执念已碎
执念已碎 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 01:58

    I suggest you using bootstrap which works perfectly:

    @import url('http://getbootstrap.com/dist/css/bootstrap.css');
     html, body, .container-table {
        height: 100%;
    }
    .container-table {
        display: table;
    }
    .vertical-center-row {
        display: table-cell;
        vertical-align: middle;
    }
    
    
    
    
    
    Login Page | ... 
    
    
    
    
    
    
    	
    Gardez moi connecté

提交回复
热议问题