美文网首页
css实现盒子横向滑动 重要

css实现盒子横向滑动 重要

作者: 程序媛_ | 来源:发表于2021-07-22 16:13 被阅读0次

    效果图:

    css

    .box {

    background: #eee;

    padding: 10px 0;

    white-space: nowrap;

    /*文本不会换行,文本会在在同一行上继续*/

    overflow-y: auto;

    /*可滑动*/

    }

    /*自定义滚动条的伪对象选择器, CSS 可以隐藏滚动条*/

    .box::-webkit-scrollbar {

    display: none;

    }

    .box1 {

    width: 49%;

    margin-left: 3%;

    height: 100px;

    background: #fff;

    display: inline-block;

    /*行内块元素*/

    }

    html:

    <div class="box">

    <div class="box1"></div>

    <div class="box1"></div>

    <div class="box1"></div>

    <div class="box1"></div>

    <div class="box1"></div>

    </div>

    相关文章

      网友评论

          本文标题:css实现盒子横向滑动 重要

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