單行文本和多行文本溢出顯示省略號

2019-11-08 13:57:15濟南做網(wǎng)站速動科技

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; */  /* 也要限制高度,這邊是自適應(yīng)了 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;  /* 限定幾行文字溢出 */
  overflow: hidden;

}

上一篇:

網(wǎng)頁布局有哪幾種,有什么區(qū)別?

下一篇:

元素水平垂直居中的方式有哪些? 返 回

Copyright © 2009-2020 JnSuDong.Com All Right Reserved.  魯ICP備19043865號