因?yàn)?a href="http://lslks.net/wangzhanjianshe/wangyesheji/" target="_blank">網(wǎng)頁(yè)排版的需要,有些地方需要過長(zhǎng)的問題加上省略號(hào)。比如:標(biāo)題限制20個(gè)中文的寬度,超出的就用省略號(hào)代替。之前會(huì)使用程序截取的方法,不過使用css來截取更有利于SEO。
下面就介紹一下具體的使用方法:
<div class="title">當(dāng)對(duì)象內(nèi)文本溢出時(shí)顯示省略標(biāo)記</div>
這是一個(gè)例子,其實(shí)我們只需要顯示如下長(zhǎng)度:
css實(shí)現(xiàn)網(wǎng)頁(yè)中文字過長(zhǎng)截取...
title class應(yīng)該這樣寫:
.title{ width:300px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
說明:
1、寬度一定要設(shè)置,可以根據(jù)實(shí)際需求調(diào)整。
2、white-space:nowrap是禁止文字折行。
3、text-overflow表示當(dāng)文本溢出時(shí)是否顯示省略標(biāo)記,有兩個(gè)值:
clip:不顯示省略標(biāo)記(...),而是簡(jiǎn)單的裁切。
ellipsis:當(dāng)對(duì)象內(nèi)文本溢出時(shí)顯示省略標(biāo)記(...)
4、overflow:hidden表示溢出內(nèi)容為隱藏。
示例效果圖:
示例代碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>text-overflow</title>
</head>
<body>
<style type="text/css">
.test_demo_clip{text-overflow:clip; overflow:hidden; white-space:nowrap; width:200px; background:#ccc;}
.test_demo_ellipsis{text-overflow:ellipsis; overflow:hidden; white-space:nowrap; width:200px; background:#ccc;}
</style>
<h2>text-overflow : clip </h2>
<div class="test_demo_clip">
不顯示省略標(biāo)記,而是簡(jiǎn)單的裁切條
</div>
<h2>text-overflow : ellipsis </h2>
<div class="test_demo_ellipsis">
當(dāng)對(duì)象內(nèi)文本溢出時(shí)顯示省略標(biāo)記
</div>
</body>
</html>