84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
怎么用css截取字符?
How to intercept characters using css? -PHP Chinese website Q&A-How to intercept characters using css? -PHP Chinese website Q&A
Let’s take a look and learn.
方法一:
任意长度的字符串
说明:优点是内容可以为任何HTML元素,包括超链接和图片等,在IE6中还会在结尾自动显示省略号。缺点是必须指定宽度数值,并且宽度不能是百分数,否则在IE中会被认为是字符总长的百分比。
方法二:
说明:优点是宽度可以设为百分数。但缺点是内容只能为纯文本,不能有超链接等内容。
CSS是实现文字自动截断,代码如下:
p.test{ width:200px; height:14px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; text-overflow: ellipsis;/* IE/Safari */ -ms-text-overflow: ellipsis; -o-text-overflow: ellipsis;/* Opera */ -moz-binding: url("ellipsis.xml#ellipsis");/*FireFox*/ }
用text-overflow的最佳场所不是文章的行文,而是用以单行显示的标题或摘要的列表。
How to intercept characters using css? -PHP Chinese website Q&A-How to intercept characters using css? -PHP Chinese website Q&A
Let’s take a look and learn.
方法一:
说明:优点是内容可以为任何HTML元素,包括超链接和图片等,在IE6中还会在结尾自动显示省略号。缺点是必须指定宽度数值,并且宽度不能是百分数,否则在IE中会被认为是字符总长的百分比。
方法二:
说明:优点是宽度可以设为百分数。但缺点是内容只能为纯文本,不能有超链接等内容。
CSS是实现文字自动截断,代码如下:
用text-overflow的最佳场所不是文章的行文,而是用以单行显示的标题或摘要的列表。