Richard__Lee

导航

如何让table中td宽度固定

  table中td会随着里面的内容伸缩,设置其width样式并没有效果。这个时候需要下面的CSS可以实现。

首先是设置table

.table {
table-layout:fixed;
}

其次是td

.table  td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

posted on 2014-06-16 14:49  Richard__Lee  阅读(1872)  评论(0编辑  收藏  举报