CSS控制文字,超出部分顯示省略號

http://www.daqianduan.com/6179.htmlhtml

 

<p style="width: 300px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;">web

 

 

若是實現單行文本的溢出顯示省略號同窗們應該都知道用text-overflow:ellipsis屬性來,固然還須要加寬度width屬來兼容部分瀏覽。瀏覽器

實現方法:dom

overflow: hidden; text-overflow:ellipsis; white-space: nowrap;

效果如圖:
dome1優化

可是這個屬性只支持單行文本的溢出顯示省略號,若是咱們要實現多行文本溢出顯示省略號呢。spa

接下來重點說一說多行文本溢出顯示省略號,以下。code

實現方法:htm

display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;

效果如圖:
dome2對象

適用範圍:
因使用了WebKit的CSS擴展屬性,該方法適用於WebKit瀏覽器及移動端;blog

注:

  1. -webkit-line-clamp用來限制在一個塊元素顯示的文本的行數。 爲了實現該效果,它須要組合其餘的WebKit屬性。常見結合屬性:
  2. display: -webkit-box; 必須結合的屬性 ,將對象做爲彈性伸縮盒子模型顯示 。
  3. -webkit-box-orient 必須結合的屬性 ,設置或檢索伸縮盒對象的子元素的排列方式 。

實現方法:

p{position: relative; line-height: 20px; max-height: 40px;overflow: hidden;} p::after{content: "..."; position: absolute; bottom: 0; right: 0; padding-left: 40px; background: -webkit-linear-gradient(left, transparent, #fff 55%); background: -o-linear-gradient(right, transparent, #fff 55%); background: -moz-linear-gradient(right, transparent, #fff 55%); background: linear-gradient(to right, transparent, #fff 55%); }

效果如圖:
dome3
適用範圍:
該方法適用範圍廣,但文字未超出行的狀況下也會出現省略號,可結合js優化該方法。

注:

    1. 將height設置爲line-height的整數倍,防止超出的文字露出。
    2. 給p::after添加漸變背景可避免文字只顯示一半。
    3. 因爲ie6-7不顯示content內容,因此要添加標籤兼容ie6-7(如:<span>…<span/>);兼容ie8須要將::after替換成:after。
相關文章
相關標籤/搜索