表格td标签在不添加多余标签的情况下实现文本内容单行显示,多余部分省略号表示的方法

#table {
    table-layout: fixed;
}
 .content {
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

 

posted @ 2017-01-10 09:55  无情码字员  阅读(650)  评论(0编辑  收藏  举报