表格文字溢出用省略号代替处理方法
/*表格 溢出隐藏*/ 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; }
/*表格 溢出隐藏*/ 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; }