省略号的样式。
css
div{ width:200px;height:200px;background:#eee;}
/* ie下的样式*/
p span{
display:block;
width:200px;
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}
/* 火狐下的样式*/
p{ clear:both; }
p span{float:left;
max-width:175px;
}
p:after{
content:"..."
}
本文来自博客园,作者:quitpoison,转载请注明原文链接:https://www.cnblogs.com/quitpoison/p/8794260.html