文本超出隱藏

Posted 2625664742-chanyk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文本超出隱藏相关的知识,希望对你有一定的参考价值。

<div class="text-box"></div>

单行文本:

.text-box
   width:300px;
   overflow:hidden;        /*隱藏超出的內容*/
   white-space:nowrap;        /*文本不換行*/
   text-overflow:ellipsis;    /*超出文本“······”顯示*/

多行文本

.text-box
     width: 300px;
     height: 50px;
     overflow: hidden;
     word-break: break-word;
     text-overflow: ellipsis;

.text-box
     width: 300px;
     height: 50px;
     overflow: hidden;
     word-break: break-all;
     text-overflow: ellipsis;

 

以上是关于文本超出隱藏的主要内容,如果未能解决你的问题,请参考以下文章

HTML多行文本超出区域用省略号代替

富文本框显示文字长度 超出变色

CSS3如何实现超出指定文本以省略号显示效果

文本超出用省略号代替

SVG 文本路径,确定文本何时超出路径

手机网页里,一段文本超出显示省略号(…),这个CSS怎么设置