点评:table中超长字符串怎么以省略号来表示,或许实现的方法有很多,本文为大家介绍下使用css来实现这个效果,需要的朋友可以参考一下,希望对大家有所帮助!
效果如图
代码:
复制代码代码如下:
<style> table td{white-space:nowrap;overflow:hidden; text-overflow:ellipsis;} table {table-layout:fixed;} </style>
<style>
table td{white-space:nowrap;overflow:hidden; text-overflow:ellipsis;}
table {table-layout:fixed;}
</style>
注意!给TD指定宽度(否则宽度自动分配,达不到理想的效果).
HTML5 UTF-8 中文乱码的解决方法
css图标制作教程制作云图标
html之简单网页表格制作示例介绍
table中的超长字符串用省略号表