欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

div、span内容超出省略号

程序员文章站 2022-03-20 19:22:24
span设置部分省略...: span{ overflow: hidden; text-overflow: ellipsis; -o-text-overflow: ellipsis; white-space:nowrap; width:240px; height:24px; display:bloc ......
span设置部分省略...
span{
        overflow: hidden;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        white-space:nowrap;
        width:240px;
        height:24px;
        display:block;
    }
div设置部分省略...
div{
overflow: hidden;
    text-overflow: ellipsis;
    white-space:nowrap;
    width:240px;
    height:24px;
}