table 与 div 固定宽高问题

div {
width:100px;
height:200px;
word-wrap: break-word;
overflow:hidden;
}

这个可以固定div的宽高,溢出内容会被剪除。

table{
table-layout:fixed;
width:200px;
height:200px;
 }
td {
width:100px;
height:200px;
overflow:hidden;
}

这个只能固定td的宽度,而高度随内容增加而增高;若也要固定其高度,则需要在td中嵌套使用div,包住content,利用div的css。

如果 去除 table-layout:fixed; 情况则会反过来。

上一篇:安装排错 max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]


下一篇:BZOJ 2741: 【FOTILE模拟赛】L [分块 可持久化Trie]