CSS ul超出横向滑动

1,388 阅读1分钟
  • CSS ul超出横向滑动:
<style>
    ul {
        overflow-x: scroll;
        white-space: nowrap;
        width: 800px;
    }
    li {
        display: inline-block;
        margin-right: 20px;
        width: 200px;
        height: 200px;
        background: #ddd;
    }
</style>
<body>
    <ul>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
        <li></li>
    </ul>
</body>
  • BFC应用之消除浮动的影响
<style>
    .left{float: left;}
    .right{display: flow-root;}
</style>