美文网首页
33、手机端横向超出滚动

33、手机端横向超出滚动

作者: 郑先森 | 来源:发表于2020-12-13 16:05 被阅读0次
<div  class="scroll">
    我是内容div,一个可以左右滑动的div ,我要有足够的内容,才能滑动!我是不固定的!
    <img src="http://www.norislam.com/attachments/2011/12/9_2011122711272748ya6.jpg">
</div>
.scroll{
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid #000000;
    box-sizing: border-box;
}
.scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.scroll img{
    width: 50px;
    height: 50px;
}

相关文章

网友评论

      本文标题:33、手机端横向超出滚动

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