CSS文字截取功能实现代码
程序员文章站
2022-07-22 14:58:11
好处是: 兼容ie,firefox,opera; 有利于内容完整性;有利于seo; 无需后台程序处理; 可以在前台随时调节要截取的长度。 不好的地方: 不能自动判断截取长度...
好处是:
兼容ie,firefox,opera;
有利于内容完整性;有利于seo;
无需后台程序处理;
可以在前台随时调节要截取的长度。
不好的地方:
不能自动判断截取长度,当字符很短的时候在firefox中也会生成后面的省略符号。
另外在设置截取宽度的时候,要注意,尽量让文字截取完整。
quote:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>css文字截取</title>
<style type="text/css">
body{font-size:13px;color:#8c966b;}
div{clear:both;width:340px;border:1px solid #333;margin:3px;padding:3px;}
div a{color:#8c966b;text-decoration:none;}
div a:hover{text-decoration:underline;}
div a{display:block;width:310px;white-space:nowrap;overflow:hidden;float:left;
-o-text-overflow: ellipsis; /* for opera */
text-overflow:ellipsis; /* for ie */
}
div:after{content:"...";padding-left:3px;font-size:12px;}/* for firefox */
</style>
</head>
<body>
用css来实现自动截取文字,不需要后台程序和js的使用
好处是:有利于内容完整性,有利于seo,无需后台程序处理,可以在前台随时调节要截取的长度。
<div><a href="#">不好的地方:不能自动判断截取长度,当字符很短的时候在firefox中也会生成后面的省略符号。</a></div>
<div><a href="#">另外在设置截取宽度的时候,要注意,尽量让文字截取完整</a></div>
</body>
</html>
兼容ie,firefox,opera;
有利于内容完整性;有利于seo;
无需后台程序处理;
可以在前台随时调节要截取的长度。
不好的地方:
不能自动判断截取长度,当字符很短的时候在firefox中也会生成后面的省略符号。
另外在设置截取宽度的时候,要注意,尽量让文字截取完整。
quote:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>css文字截取</title>
<style type="text/css">
body{font-size:13px;color:#8c966b;}
div{clear:both;width:340px;border:1px solid #333;margin:3px;padding:3px;}
div a{color:#8c966b;text-decoration:none;}
div a:hover{text-decoration:underline;}
div a{display:block;width:310px;white-space:nowrap;overflow:hidden;float:left;
-o-text-overflow: ellipsis; /* for opera */
text-overflow:ellipsis; /* for ie */
}
div:after{content:"...";padding-left:3px;font-size:12px;}/* for firefox */
</style>
</head>
<body>
用css来实现自动截取文字,不需要后台程序和js的使用
好处是:有利于内容完整性,有利于seo,无需后台程序处理,可以在前台随时调节要截取的长度。
<div><a href="#">不好的地方:不能自动判断截取长度,当字符很短的时候在firefox中也会生成后面的省略符号。</a></div>
<div><a href="#">另外在设置截取宽度的时候,要注意,尽量让文字截取完整</a></div>
</body>
</html>