文本超出隱藏
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;
以上是关于文本超出隱藏的主要内容,如果未能解决你的问题,请参考以下文章