CSS text-overflow 超出溢出显示省略号兼容
1,html布局
<table>
<tr>
<td></td>
</tr>
</table>
2,css样式
table{
table-layout:fixed; //重要样式
}
td{
width:500px;overflow:hidden;overflow:ellipsis;
}
3,兼容
兼容火狐,谷歌等主流浏览器
1,html布局
<table>
<tr>
<td></td>
</tr>
</table>
2,css样式
table{
table-layout:fixed; //重要样式
}
td{
width:500px;overflow:hidden;overflow:ellipsis;
}
3,兼容
兼容火狐,谷歌等主流浏览器