标签:ext width table text css 如何
table中td会随着里面的内容伸缩,设置其width样式并没有效果。这个时候需要下面的CSS可以实现。
首先是设置table
.table {
table-layout:fixed;
}
其次是td
.table td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
如何让table中td宽度固定,布布扣,bubuko.com
标签:ext width table text css 如何
原文地址:http://www.cnblogs.com/lpfsky/p/3790952.html