CSS代码:
.text_overflow{
    width:160px; 
    padding:40px 20px; 
    border:2px solid #cccccc; 
    white-space:nowrap; 
    text-overflow:ellipsis; 
    -o-text-overflow:ellipsis; 
    overflow:hidden;
}
HTML代码:
<div class="text_overflow">这段文字在超出外部div区域的时候会显示点点点。</div>


Opera浏览器不支持单纯的text-overflow:ellipsis属性,换句话说就是使用text-overflow:ellipsis属性无法实现Opera浏览器下文字溢出点点点的表示。但是Opera浏览器有一个私有属性可以实现上述的功能,就是在text-overflow的前面加上"-o",也就是-o-text-overflow:ellipsis,于是,就实现了Opera浏览器的文字溢出省略号表示的功能,对于Firefox浏览器,目前为止,仍无有效的单纯的CSS属性。 

posted on 2011-10-21 10:14  kitea  阅读(238)  评论(0)    收藏  举报