美文网首页
html+css 实现文本固定长度,超出显示省略号

html+css 实现文本固定长度,超出显示省略号

作者: Joe_Somebody | 来源:发表于2017-07-25 09:50 被阅读0次

    html代码

    <divid="d1">
    
    </div>
    

    css代码

    #d1{
    width:300px;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    -webkit-text-overflow:ellipsis;
    }```
    注:关键是给容器指定宽度,并且利用white-space:nowrap;属性阻止超出部分自动换行,省略号则是由text-overflow:ellipsis;实现的

    相关文章

      网友评论

          本文标题:html+css 实现文本固定长度,超出显示省略号

          本文链接:https://www.haomeiwen.com/subject/wtqwkxtx.html