Vertical Align with Absolute Positioning

后端 未结 3 1729
谎友^
谎友^ 2020-12-11 11:39

In the following code I\'m trying to make the elements within the green div.middle elements to vertically align to the middle.


I\'ve tried the table-cell appro

3条回答
  •  难免孤独
    2020-12-11 12:08

    add a parent div with display:table and height:100% to .table-cell will fix this

    So the html structure wil be :

       

    test

    add this Style:

    #sidebar .table{
       display:table;
       height:100%;
    }
    

    See jsfiddle I have modified

提交回复
热议问题