📜  tbody 滚动 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:58.285000             🧑  作者: Mango

代码示例1
tbody {
    display: block;
    height: 50px;
    overflow: auto;
}
thead, tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;/* even columns width , fix width of table too*/
}