纯css文本溢出省略(需定义宽度,兼容IE6、IE7、Firefox2.0、Opera9.0)

{ Posted on 八 14 2009 by Xiacong }
Categories : 其他

.textoverflow a {}{
 display:block;
 width:120px;
 margin: 0px 0px 0px 3px;
 white-space: nowrap;
 overflow: hidden;
 float: left;
 -o-text-overflow: ellipsis;    /**//* for Opera */
 text-overflow: ellipsis;        /**//* for IE */
}
.textoverflow:after{}{ content: “”; }/**//* for Firefox */
@media all and (min-width: 0px){}{ .textoverflow:after{ content:”"; }/**//* for Opera */ }

 

转至:http://www.phpweblog.net/kilobug/archive/2008/06/23/5223.aspx

Post a Comment