css控制文字字数方法

css代码

{
    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

text-overflow  属性规定当文本溢出包含元素时发生的事情

详细 http://www.w3school.com.cn/cssref/pr_text-overflow.asp

猜你喜欢

转载自blog.csdn.net/weixin_41869941/article/details/82260374