用CSS实现超长的字符变成省略号 .

来源:互联网 发布:软件开发新技术 编辑:程序博客网 时间:2024/04/30 08:51
css省略号ellipsis
[html] view plaincopyprint?在CODE上查看代码片派生到我的代码片
  1. <div>xxxxxxxx</div>  


通过以下css,可以令div中的超长的字符变成省略号

[css] view plaincopyprint?在CODE上查看代码片派生到我的代码片
  1. div {  
  2.   white-spacenowrap;  
  3.   overflowhidden;  
  4.   text-overflow: ellipsis;  
  5. }  


0 0
原创粉丝点击