<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; }
原文地址:https://www.cnblogs.com/2625664742-chanyk/p/11065537.html
时间: 2024-10-10 07:04:06