当前位置: 编程技术>WEB前端
使用CSS不用程序实现文字自动截断 用省略号代替
来源: 互联网 发布时间:2014-09-06
本文导语: .test{ width:200px; height:50px; border:1px solid red; padding:10px; overflow:hidden; /*不显示超过对象宽度的内容*/ text-overflow:ellipsis; /*当对象内文本溢出时显示省略标记(...)*/ white-space:nowrap; /*限制在一行内显示所有文本*/ } ...
.test{
width:200px;
height:50px;
border:1px solid red;
padding:10px;
overflow:hidden; /*不显示超过对象宽度的内容*/
text-overflow:ellipsis; /*当对象内文本溢出时显示省略标记(...)*/
white-space:nowrap; /*限制在一行内显示所有文本*/
}
width:200px;
height:50px;
border:1px solid red;
padding:10px;
overflow:hidden; /*不显示超过对象宽度的内容*/
text-overflow:ellipsis; /*当对象内文本溢出时显示省略标记(...)*/
white-space:nowrap; /*限制在一行内显示所有文本*/
}
www.
div.test{
width:200px;
height:100px;
border:1px solid red;
padding:10px;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
,努力打造精品学习网站。欢迎大家光临
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]