html代碼:
<p class="one">單行文本溢出顯示省略號</p> <p class="moreLine">多行文本溢出顯示省略號 啦啦啦啦啦啦 哈哈哈哈</p>
Css樣式
.one{
width:100px; /* 記住要限定寬度 */
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.moreLine{
width:100px; /* 記住要限定寬度 */
/* height:300px; */ /* 也要限制高度,這邊是自適應了 */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3; /* 限定幾行文字溢出 */
overflow: hidden;
}
Copyright © 2009-2020 JnSuDong.Com All Right Reserved. 魯ICP備19043865號