美文网首页
横向滚动

横向滚动

作者: 嵩鼠 | 来源:发表于2020-04-14 15:07 被阅读0次

*{

//如果底下布局没有效果 看看是否   touch-action 设置了none   

    touch-action: auto;

}

.father{

        overflow-x: auto;

        white-space: nowrap; 

}

.son{

    display: inline-block;

}

<div class="father">

    <div class="son">

    </div>

</div>

相关文章

网友评论

      本文标题:横向滚动

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