Html 中文字过长使用...代替

 1<style type="text/css">
 2    .text-overflow {
 3    display:block;/*内联对象需加*/
 4    width:31em;
 5    word-break:keep-all;/* 不换行 */
 6    white-space:nowrap;/* 不换行 */
 7    overflow:hidden;/* 内容超出宽度时隐藏超出部分的内容 */
 8    text-overflow:ellipsis;/* 当对象内文本溢出时显示省略标记() ;需与overflow:hidden;一起使用。*/
 9}

10</style>
11

 

Html 使用代码(GridView 等数据控件也对应Html使用)

 

Table使用省略号

 

 

posted @ 2008-08-05 12:03  flat_peach  阅读(730)  评论(0)    收藏  举报