首頁 > web前端 > css教學 > 主體

text-overflow屬性怎麼用

青灯夜游
發布: 2019-02-12 10:12:58
原創
3866 人瀏覽過

text-overflow屬性用於指定當文字溢出包含它的元素時,應該發生的事情。

text-overflow屬性怎麼用

CSS3  text-overflow屬性

作用:text-overflow 屬性規定當文字溢出包含元素時發生的事情。

語法:

text-overflow: clip|ellipsis|string;
登入後複製

clip:修剪文字。       

ellipsis:顯示省略符號來代表修剪的文字。  

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

附註:所有主流瀏覽器都支援 text-overflow 屬性。

CSS3  text-overflow屬性的使用範例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<style> 
div.test
{
white-space:nowrap; 
width:12em; 
overflow:hidden; 
border:1px solid #000000;
}
div.test:hover
{
text-overflow:inherit;
overflow:visible;
}
</style>
</head>
<body>
<p>将鼠标移动到框内,查看效果.</p>
<div class="test" style="text-overflow:ellipsis;">This is some long text that will not fit in the box</div>
<br>
<div class="test" style="text-overflow:clip;">This is some long text that will not fit in the box</div>
</body>
</html>
登入後複製

效果圖:

text-overflow屬性怎麼用

#本文參考:https://www.html.cn/book/css/properties/user-interface/text-overflow.htm

#

以上是text-overflow屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板