移动端横向滚动

html:

       

       

     

css:

.buy_type {

        margin-top: 40px;

        justify-content: center;

        white-space: nowrap;

        display: -webkit-box;

        overflow-x: scroll;

        overflow-y: hidden;

        -webkit-overflow-scrolling:touch;

        &_box {

          display: inline-block;

          background: $color_white;

          border: solid 0.2vh #E4E4E4;

          border-radius: 10px;

          width: 200px;

          position: relative;

          margin-left: 20px;

}

主要利用:

-webkit-overflow-scrolling:touch;

display: -webkit-box;

        overflow-x: scroll;

        overflow-y: hidden;

实现横向滚动

你可能感兴趣的:(移动端横向滚动)