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