溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

CSS中ellipsis與padding 如何結(jié)合

發(fā)布時(shí)間:2021-06-11 14:12:42 來(lái)源:億速云 閱讀:156 作者:Leah 欄目:web開(kāi)發(fā)

CSS中ellipsis與padding 如何結(jié)合?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

CSS 實(shí)現(xiàn)的文本截?cái)?/strong>

考察如下代碼實(shí)現(xiàn)文本超出自動(dòng)截?cái)嗟臉邮酱a:

.truncate-text-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

使用如下的 HTML 片段進(jìn)行測(cè)試:

<style>
  .my-div {
    width: 300px;
    margin: 10px auto;
    background: #ddd;
  }
</style>
<div class="my-div truncate-text-4">
  How Not To Shuffle - The Knuth Fisher-Yates Algorithm. Written by Mike James.
  Thursday, 16 February 2017. Sometimes simple algorithms are just wrong. In
  this case shuffling an .... In other words as the array is scanned the element
  under
</div>

運(yùn)行效果:

CSS中ellipsis與padding 如何結(jié)合

通過(guò) CSS ellipsis 實(shí)現(xiàn)的文本截?cái)嘈Ч?/p>

padding 的問(wèn)題

一切都很完美,直到給文本容器加上 padding 樣式后。

  .my-div {
    width: 300px;
    margin: 10px auto;
    background: #ddd;
+    padding: 30px;
  }
現(xiàn)在的效果

現(xiàn)在的效果是這樣的:

CSS中ellipsis與padding 如何結(jié)合

padding 破壞了文本截?cái)?/p>

因?yàn)?padding 占了元素內(nèi)部空間,但這部分區(qū)域卻是在元素內(nèi)部的,所以不會(huì)受 overflow: hidden 影響。

解決辦法

line-height

當(dāng)設(shè)置的 line-height 適當(dāng)時(shí),或足夠大時(shí),可以將 padding 的部分抵消掉以實(shí)現(xiàn)將多余部分?jǐn)D出可見(jiàn)范圍的目標(biāo)。

.my-div {
  width: 300px;
  margin: 10px auto;
  background: #ddd;
  padding: 30px;
+  line-height: 75px;
}

CSS中ellipsis與padding 如何結(jié)合

通過(guò) line-height 修復(fù)

這種方式并不適用所有場(chǎng)景,因?yàn)椴皇撬械胤蕉夹枰敲创蟮男懈摺?/p>

替換掉 padding

padding 無(wú)非是要給元素的內(nèi)容與邊框間添加間隔,或是與別的元素間添加間隔。這里可以考慮其實(shí)方式來(lái)替換。

比如 margin。但如果元素有背景,比如本例中,那 margin 的試就不適用了,因?yàn)樵?margin 部分是不帶背景的。

還可用 border 代替。

.my-div {
  width: 300px;
  margin: 10px auto;
  background: #ddd;
-  padding: 30px;
+  border: 30px solid transparent;
}

CSS中ellipsis與padding 如何結(jié)合

使用 border 替換 padding

毫不意外,它仍然有它的局限性。就是在元素本身有自己的 border 樣式要求的時(shí)候,就會(huì)沖突了。

將邊距與內(nèi)容容器分開(kāi)

比較普適的方法可能就是它了,即將內(nèi)容與邊距分開(kāi)到兩個(gè)元素上,一個(gè)元素專(zhuān)門(mén)用來(lái)實(shí)現(xiàn)邊距,一個(gè)元素用來(lái)實(shí)現(xiàn)文本的截?cái)唷_@個(gè)好理解,直接看代碼:

<div className="my-div">
  <div className="truncate-text-4">
    How Not To Shuffle - The Knuth Fisher-Yates Algorithm. Written by Mike
    James. Thursday, 16 February 2017. Sometimes simple algorithms are just
    wrong. In this case shuffling an .... In other words as the array is scanned
    the element under
  </div>
</div>

而我們的樣式可以保持不動(dòng)。

CSS中ellipsis與padding 如何結(jié)合

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI