文本溢出自动省略号
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh" lang="zh">
<head profile="http://www.w3.org/2000/08/w3c-synd/#">
<meta http-equiv="content-language" content="zh-cn" />
<meta http-equiv="content-type" content="text/html;charset=gb2312" />
<title>文本溢出自动省略</title>
<style type="text/css">
/*<![CDATA[*/
body{
font-size:12px;
line-height:22px;
}
li {
width:200px;
white-space:nowrap;
text-overflow:ellipsis;
-o-text-overflow:ellipsis;
overflow: hidden;
}
/*]]>*/
</style>
</head>
<body>
<ul>
<li><a href="#">文本溢出自动省略测试文本溢出自动省略测试</a></li>
<li><a href="#">文本溢出自动省略测试</a></li>
<li><a href="#">文本溢出自动省略测试文本溢出自动省略测试</a></li>
<li><a href="#">文本溢出自动省略测试文本溢出自动省略测试</a></li>
<li><a href="#">文本溢出自动省略测试</a></li>
</ul>
</body>
</html>