标签:style color 使用 sp div as text br ht
一、使用css实现
.slh {
width:200px;
display: block;
overflow: hidden;
white-space:nowrap;
-o-text-overflow:ellipsis;
text-overflow:ellipsis;}
优点:简单易用
缺点:如果设置 /*td, th, div { word-break: break-all; word-wrap: break-word; }*/
ie8+直接根据宽度将宽度截取。而不会显示省略号。
而且如果不规定高度。文本还会换行显示。
所以加一个样式
.height20{height:20px;}
标签:style color 使用 sp div as text br ht
原文地址:http://www.cnblogs.com/wuqiong/p/4132893.html