CSS教程

关注公众号 jb51net

关闭
网页制作 > CSS > CSS教程 >

table中的超长字符串用省略号表示的css样式

脚本之家

效果如图
 
代码:


<style>
table td{white-space:nowrap;overflow:hidden; text-overflow:ellipsis;}
table {table-layout:fixed;}
</style>

注意!给TD指定宽度(否则宽度自动分配,达不到理想的效果).