兼容火狐、Opera、chrome的文字溢出添加省略號的功能,當文字或字符超出外層Div的時候,自動隱藏並添加省略號,對前端開發來講,這是個至關不錯的CSS特效吧。css
示例以下:html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>文字溢出添加省略號</title>
<style type="text/css">
ul,li{ list-style:none; }
.textoverflow ul li{
display:block;
width:180px;
margin: 0px 0px 0px 3px;
white-space: nowrap;
overflow: hidden;
-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 */
}
</style>
</head>
<body>
<div class="textoverflow">
<ul>
<li><a href="#">web標準常見問題大全web標準常見問題大全</a></li>
<li><a href="#">web標準常見問題大全web標準常見問題大全</a></li>
<li><a href="#">web標準常見問題大全web標準常見問題大全</a></li>
<li><a href="#">web標準常見問題大全web標準常見問題大全</a></li>
<li><a href="#">web標準常見問題大全web標準常見問題大全</a></li>
</ul>
</div>
</body>
</html>