div+css实现文字过多隐藏方法
<style type="text/css">
<!--
.list ul{margin-left:5px;margin-top:1px;padding:0px;width: 275px;}
.list li{overflow:hidden;white-space: nowrap; width:200px; text-overflow:ellipsis;padding-left:10px;font-size:14px;height:25px;}
--></STYLE>
<div class="list">
<ul>
<li><a href="wenzhang.htm">文字太多隐藏不了,怎么办?如何解决?是那里的问题?</a></li>
<li style="text-overflow:ellipsis">文字太多隐藏不了,怎么办?如何解决?是那里的问题?</li>
<li>文字太多隐藏不了,怎么办?如何解决?是那里的问题?</li>
</ul>
</div>
(