Css单行省略号
.ellipsis {
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
Css多行省略号
display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
overflow: hidden; text-overflow: ellipsis;
Flex布局导致省略号无效
.content{display:flex}
.content .left{width:200rpx}
.content .right{flex: 1; min-width: 0;}
.content .right .title{
line-height: 38rpx;
height:38rpx;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
免费教程
曾经看过一个短视频,一名记者采访了上百位老人,让他们回想这辈子最遗憾的事是什么?很多人都回答:最遗憾的就是有些想做的事没有做,一些想追的梦没有追。人生最遗憾的事不是“我不行”,而是“我本可以”。努力过,坚持过,不管梦想能否实现,至少心中没有遗憾。对我们每个人来说,一天又一天的坚持,就是在一次又一次接近梦想。
0
本文标签:
5.00