在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一、单行溢出 1,单行溢出,超出部分显示...或者截取。前提必须有宽度。 width:300px; overflow: hidden; text-overflow:ellipsis; whitewhite-space: nowrap; 效果如图: 二、多行溢出 {display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;-webkit-box-orient:vertical;}
display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; 效果如图: 因使用了WebKit的CSS扩展属性,该方法适用于WebKit浏览器及移动端; 实现方法:
p{position: relative; line-height: 20px; max-height: 40px;overflow: hidden;} p::after{content: "..."; position: absolute; bottombottom: 0; rightright: 0; padding-left: 40px; background: -webkit-linear-gradient(left, transparent, #fff 55%); background: -o-linear-gradient(rightright, transparent, #fff 55%); background: -moz-linear-gradient(rightright, transparent, #fff 55%); background: linear-gradient(to rightright, transparent, #fff 55%); } 适用范围: 注: 1.将height设置为line-height的整数倍,防止超出的文字露出。 极客世界小编补充: ie核心的浏览器一定要定义line-height与高度,-webkit-line-clamp意思就是几行,例如
-webkit-line-clamp -webkit-line-clamp 是一个 不规范的属性(unsupported WebKit property),它没有出现在 CSS 规范草案中。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论