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

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

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

7条回答
  •  心在旅途
    2020-11-29 22:47

    This is exactly what you want:

    HTML

    Text

    Text

    Text

    Text

    Text

    Text

    Text

    Text

    Text

    CSS

    .table {
        display: table;
        height:auto;
    }
    
    .cell {
        border: 2px solid black; 
        display:table-cell;
        vertical-align:top;
    }
    
    .container {
        height: 100%;
        overflow:auto;
        border: 2px solid green;
        -moz-box-sizing: border-box;
    }
    

提交回复
热议问题