美文网首页
2020-08-06 DIV超出长度后不换行,横向滚动

2020-08-06 DIV超出长度后不换行,横向滚动

作者: 追寻1989 | 来源:发表于2020-08-06 13:30 被阅读0次

    这里只写出css样式,高度宽度浮动都是次要
    父DIV:

    .fatherBar{
        width: 1920px;
        height: 216px;
        float: left;
        overflow-y: hidden;
        overflow-x: auto;
        white-space: nowrap;
    }
    

    子DIV:

    .childrenBar{
        width: 384px;
        height: 216px; 
        position: relative;
        display: inline-block;
    }
    

    相关文章

      网友评论

          本文标题:2020-08-06 DIV超出长度后不换行,横向滚动

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