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

来源:互联网 发布:mac卸载自带软件 编辑:程序博客网 时间:2024/04/30 15:23
<div>xxxxxxxx</div>


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

div {  white-space: nowrap;  overflow: hidden;  text-overflow: ellipsis;}


0 0
原创粉丝点击