表中只显示三个元素

时间:2016-08-04 12:37:45

标签: html css

是否可以只显示三行HTML表格?

滚动滚动条时,其他元素将会显示。

1 个答案:

答案 0 :(得分:1)

将您的表放在以下div内。

div {
    width: 150px;
    height: 150px; /*make this as the height for 3 rows*/
    overflow: scroll;
}