height: 100% for
inside
with display: table-cell

后端 未结 7 1463
醉话见心
醉话见心 2020-11-29 21:44

Here is 2 column markup using display: table and display: table-cell CSS declarations:

7条回答
  •  情话喂你
    2020-11-29 22:40

    table{
       height:1px;
    }
    
    table > td{
       height:100%;
    }
    
    table > td > .inner{
       height:100%;
    }
    

    Confirmed working on:

    • Chrome 60.0.3112.113, 63.0.3239.84
    • Firefox 55.0.3, 57.0.1
    • Internet Explorer 11

提交回复
热议问题