作者:知足者常乐-----仙_230 | 来源:互联网 | 2023-05-16 18:05
div{width:100px;height:200px;word-wrap:break-word;overflow:hidden;}这个可以固定div的宽高,溢出内容会被剪除。table
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; 情况则会反过来。