CSS3 文本溢出text-overflow
text-overflow屬性規(guī)定當文本溢出包含元素時發(fā)生的事情,語法如下:
text-overflow: clip [ ellipsis | string :
text-overflow屬性的值可以是以下幾種:
?clip:修剪文本。
?ellipsis:顯示省略符號來代表被修剪的文本。
?string:使用給定的字符串來代表被修剪的文本。
下面我們通過一個實例了解text-overflow屬性。
【例題】使用text-overflow屬性
代碼如下:
<!DOCTYPE html>
<html>
<head>
<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>如果您把光標移動到下面兩個 div 上,就能夠看到全部文本。</p>
<p>這個 div 使用 "text-overflow:ellipsis" :</p>
<div class="test" style="text-overflow:ellipsis;">This is some long text that will not fit in the box</div>
<p>這個 div 使用 "text-overflow:clip":</p>
<div class="test" style="text-overflow:clip;">This is some long text that will not fit in the box</div>
</body>
</html>
點擊加載更多評論>>