评论

收藏

[Html/CSS] 使用CSS不用程序实现文字自动截断 用省略号代替

开发技术 开发技术 发布于:2021-08-03 13:08 | 阅读数:542 | 评论:0

样式:
.test{ 
width:200px; 
height:50px; 
border:1px solid red; 
padding:10px; 
overflow:hidden; /*不显示超过对象宽度的内容*/ 
text-overflow:ellipsis; /*当对象内文本溢出时显示省略标记(...)*/ 
white-space:nowrap; /*限制在一行内显示所有文本*/ 
}
代码:
<html>   <head>   <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />   <title>www.jb51.net 脚本之家</title>   </head>   <style type="text/css">   div.test{   width:200px;   height:100px;   border:1px solid red;   padding:10px;   overflow:hidden;   text-overflow:ellipsis;   white-space:nowrap;   }   </style>   <body>   <div class="test"><span style="color: rgb(0, 0, 0); font-family: monospace; font-size: medium; white-space: pre-wrap;">CodeAE代码之家-为开发爱好者分享技巧!</span><a href="http://www.codeae.com" style="text-decoration:none">。</a>欢迎大家光临</div>   </body>   </html>
点此可测试代码运行结果  注:引入外部Js需再刷新一下页面才能执行





关注下面的标签,发现更多相似文章