标签:ica cal ace space idt display lamp pac white
单行溢出省略号显示
.myText{
width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
多行溢出省略号显示
.myText{
width: 200px;
/*text-overflow: ellipsis;*/
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
line-height: 1.5;
}
标签:ica cal ace space idt display lamp pac white
原文地址:http://www.cnblogs.com/heshimei/p/7159971.html