当前位置:首页 » 《我的小黑屋》 » 正文

前端 CSS 经典:省略号

28 人参与  2024年09月17日 13:20  分类 : 《我的小黑屋》  评论

点击全文阅读


1. 单行省略

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

2. 双行省略(webkit 内核)

.ellipsis {  display: -webkit-box; /* 显示多行文本容器 */  -webkit-box-orient: vertical;  -webkit-line-clamp: 2; /*显示行数*/  overflow: hidden; /*隐藏多出部分文字*/  text-overflow: ellipsis; /*用省略号代替多出部分文字*/}

3. 通用省略

.ellipsis {  position: relative;  line-height: 1.4em;  height: 2.8em; /* 这里的高度是line-height的两倍 */  overflow: hidden;}.ellipsis::after {  content: "...";  position: absolute;  bottom: 0;  right: 0;  padding: 0 5px 1px 30px;  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff 50%) repeat    scroll 0 0 rgba(0, 0, 0, 0);}


点击全文阅读


本文链接:http://zhangshiyu.com/post/160930.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1