省略号的样式。

Posted quitpoison

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了省略号的样式。相关的知识,希望对你有一定的参考价值。

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:"..."
}

以上是关于省略号的样式。的主要内容,如果未能解决你的问题,请参考以下文章