table td 固定宽度,超出部分省略隐藏

1:先给table添加样式,要个宽度

1 table{
2     width: 1000px;
3 }

 

2:td增加样式

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

下面为效果图

 

posted @ 2017-06-18 21:15  SpiritLing  阅读(1500)  评论(0编辑  收藏  举报