表格文字溢出用省略号代替处理方法

/*表格 溢出隐藏*/  
table{  
    width:100%;  
    border-collapse: collapse;  
    table-layout:fixed;/* 只有定义了表格的布局算法为fixed,下面td的定义才能起作用。 */  
}

/*文字处理*/
.word_break{
    white-space:nowrap; 
    text-overflow:ellipsis; 
    -o-text-overflow:ellipsis; 
    overflow:hidden;
}

 

posted @ 2017-08-04 14:48  技术宅home  阅读(482)  评论(0编辑  收藏  举报