Maison  >  Questions et réponses  >  le corps du texte

怎么用css截取字符?

怎么用css截取字符?

末日的春天末日的春天2822 Il y a quelques jours1025

répondre à tous(2)je répondrai

  • 数据分析师

    数据分析师2017-10-01 00:23:27

    Comment intercepter des caractères en utilisant CSS ? -Site Web PHP chinois Q&A-Comment intercepter des caractères avec CSS ? - Questions et réponses sur le site Web chinois PHP

    Veuillez regarder et apprendre.

    répondre
    0
  • 伊谢尔伦

    伊谢尔伦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的最佳场所不是文章的行文,而是用以单行显示的标题或摘要的列表。


    répondre
    0
  • Annulerrépondre