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

/ / 2024-10-17   阅读:2502
表格文字溢出用省略号代替处理方法...
/*表格 溢出隐藏*/  
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;
}


我要评论

昵称:
验证码:

最新评论

共0条 共0页 10条/页 首页 上一页 下一页 尾页
意见反馈