css实现文字自动截断...

来源:互联网 发布:神通数据库怎么样 编辑:程序博客网 时间:2024/06/08 06:19
先上图:
uploads/200606/21_212158_1.gif


css代码

div.test{
width
:200px;
height
:100px;
border
:1px solid red;
border-top
:4px solid red;
padding
:10px;
overflow
:hidden;
text-overflow
:ellipsis;
white-space
:nowrap;
}