溫馨提示×

溫馨提示×

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

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

css中如何實現(xiàn)內(nèi)容超出隱藏效果

發(fā)布時間:2021-05-18 09:21:18 來源:億速云 閱讀:154 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細講解有關(guān)css中如何實現(xiàn)內(nèi)容超出隱藏效果,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

css實現(xiàn)內(nèi)容超出隱藏效果的方法是,給文本內(nèi)容添加text-overflow屬性,例如【text-overflow:ellipsis】。text-overflow屬性指定當文本溢出包含它的元素應(yīng)該發(fā)生什么。

本文操作環(huán)境:windows10系統(tǒng)、css 3、thinkpad t480電腦。

css為我們提供了一個很適合的元素text-overflow,這個屬性指定當文本溢出包含它的元素,應(yīng)該發(fā)生什么。

語法:

text-overflow: clip|ellipsis|string;

屬性值:

  • clip    修剪文本。

  • ellipsis    顯示省略符號來代表被修剪的文本。

  • string    使用給定的字符串來代表被修剪的文本。

舉個例子:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title></title> 
<style> 
div.test
{
	white-space:nowrap; 
	width:12em; 
	overflow:hidden; 
	border:1px solid #000000;
}
</style>
</head>
<body>

<p>以下 div 容器內(nèi)的文本無法完全顯示,可以看到它被裁剪了。</p>
<p>div 使用 &quot;text-overflow:ellipsis&quot;:</p>

<div class="test" style="text-overflow:ellipsis;">This is some long text that will not fit in the box</div>
<p>div 使用 &quot;text-overflow:clip&quot;:</p>
<div class="test" style="text-overflow:clip;">This is some long text that will not fit in the box</div>
<p>div 使用自定義字符串 &quot;text-overflow: &gt;&gt;&quot;(只在 Firefox 瀏覽器下有效):</p>
<div class="test" style="text-overflow:'>>';">This is some long text that will not fit in the box</div>
</body>
</html>

展示效果:

css中如何實現(xiàn)內(nèi)容超出隱藏效果

css的選擇器有哪些

css的選擇器可以分為三大類,即id選擇器、class選擇器、標簽選擇器。它們之間可以有多種組合,有后代選擇器、子選擇器、偽類選擇器、通用選擇器、群組選擇器等等

關(guān)于“css中如何實現(xiàn)內(nèi)容超出隱藏效果”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節(jié)

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

css
AI