css文字超出省略

moxiaoying
1年前发布 /正在检测是否收录...
温馨提示:
本文最后更新于2024年03月05日,已超过410天没有更新,若内容或图片失效,请留言反馈。

上下居中

display: flex;
flex-direction: column;
justify-content: center;
align-items: center;

单行超出省略号

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;

多行超出省略号

display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;

超出两行省略

overflow:hidden; 
text-overflow:ellipsis;
display:-webkit-box; 
-webkit-box-orient:vertical;
-webkit-line-clamp:2; 

文字两端对齐

text-align-last: justify

文字竖着排

writing-mode: vertical-rl;
喜欢就支持一下吧
点赞 0 分享 收藏
评论
所有页面的评论已关闭