思路
現(xiàn)在假設(shè)想要顯示的文本行數(shù)是N行,首先設(shè)定文本容器的max-height = N 乘以 line-height,第N行顯示的文本為部分文本 + ... + 展開全部。設(shè)置文本容器的字體顏色為背景色,偽元素before和after的content都為文本內(nèi)容。借助偽元素before顯示(N - 1)行元素,z-index = 1(在文本容器、before偽元素、after偽元素、[展開全部]按鈕中確保before偽元素z-index最大)。after偽元素的padding-right寬度為[展開全部]按鈕的寬度(單位為em),text-indent = (N - 1) * [展開全部]按鈕的寬度(如何理解縮進? 通過設(shè)置after偽元素的padding-right為第N行的[展開全部]按鈕留位置,由于第1行、第2行...第(N - 1)行都少顯示[展開全部]按鈕寬度的字體,所以,為了確保偽元素after在第N行中顯示正確,需要向左縮進(N - 1) 乘以 [展開全部]按鈕的寬度)
效果圖
完整代碼
<div class="desc" title="Jennifer Joanna Aniston (born February 11, 1969)[1] is an American actress, producer, and businesswoman.[2] The daughter of Greek actor John Aniston and American actress Nancy Dow, Aniston gained worldwide recognition for portraying Rachel Green on the popular television sitcom Friends (1994–2004), a role which earned her a Primetime Emmy Award, a Golden Globe Award, and a Screen Actors Guild Award. The character was widely popular during the airing of the series and was later recognized as one of the 100 greatest female characters in United States television"> Jennifer Joanna Aniston (born February 11, 1969)[1] is an American actress, producer, and businesswoman.[2] The daughter of Greek actor John Aniston and American actress Nancy Dow, Aniston gained worldwide recognition for portraying Rachel Green on the popular television sitcom Friends (1994–2004), a role which earned her a Primetime Emmy Award, a Golden Globe Award, and a Screen Actors Guild Award. The character was widely popular during the airing of the series and was later recognized as one of the 100 greatest female characters in United States television <button>更多</button> </div>
.desc { position: relative; width: 400px; /*用像素表示,不要用em,以免造成不同瀏覽器下計算出現(xiàn)小數(shù)點取舍不同導(dǎo)致1像素的差距【行高*截取行數(shù)】*/ overflow: hidden; max-height: 72px; font-size: 16px; line-height: 24px; overflow: hidden; word-wrap: break-word; /*強制打散字符*/ word-break: break-all; background: #fff; /*同背景色*/ color: #fff; &:after, &:before { content: attr(title); position: absolute; left: 0; top: 0; width: 100%; /*實際文本顏色*/ color: #000; } &:before { display: block; overflow: hidden; /*顯示在最上面,展示前面的(截取行數(shù)-1)行字符*/ z-index: 1; /*根據(jù)行高和截取行數(shù)調(diào)整,值為[(截取行數(shù)-1)*行高]*/ max-height: 48px; /*同背景色*/ background: #fff; } &:after { display: -webkit-box; -webkit-box-orient: vertical; -webkit-box-sizing: border-box; box-sizing: border-box; /*截取行數(shù)*/ -webkit-line-clamp: 3; /*行首縮進字符數(shù),值為[(截取行數(shù)-1)*尾部留空字符數(shù)]*/ text-indent: -8em; /*尾部留空字符數(shù)*/ padding-right: 4em; } button { width: 40px; height: 20px; font-size: 12px; padding: 0; outline: 0; position: absolute; right: 0; bottom: 0; } }
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com