How do I emulate a table with divs & css?

前端 未结 1 1586
一生所求
一生所求 2021-01-17 22:41

A table like this one:

1条回答
  •  别那么骄傲
    2021-01-17 22:57

    Try this ;)

    CSS

    .table {
        display: table;
        width: 500px;
    }
    .tr { 
        display: table-row; 
    }
    .td { 
        display: table-cell;
    }
    

    HTML

    asdf
    asdf
    asdf
    asdf
    asdf
    asdf

    0 讨论(0)
提交回复
热议问题
... ... ...