数据分析师2017-10-01 00:23:27
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.
伊谢尔伦2017-02-18 09:49:17
方法一:
<p style="width:300px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;"> 任意长度的字符串 </p>
说明:优点是内容可以为任何HTML元素,包括超链接和图片等,在IE6中还会在结尾自动显示省略号。缺点是必须指定宽度数值,并且宽度不能是百分数,否则在IE中会被认为是字符总长的百分比。
方法二:
<input type="text" style="width:100%; cursor:default; border-width:0; border-style:none; background-color:transparent;" value="任意长度的字符串" readonly/>
说明:优点是宽度可以设为百分数。但缺点是内容只能为纯文本,不能有超链接等内容。
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的最佳场所不是文章的行文,而是用以单行显示的标题或摘要的列表。