美文网首页
css3 横向滚动条

css3 横向滚动条

作者: hiram_hu | 来源:发表于2018-07-11 19:13 被阅读0次

    单项固定宽度 利用flex布局不用写宽度

    div.scroll

    ul

    li

    .scroll{

    width:300px;

    overflow-y: hidden;

    overflow-x: auto;

    }

    ul{

    display: flex;

    flex-direction: row; //横向排列

    }

    li{

    flex-shrink: 0 //不影响li宽度

    }

    相关文章

      网友评论

          本文标题:css3 横向滚动条

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