横向不换行

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>01.滚动</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .box{
            margin: 100px auto;
            width: 200px;
            height: 100px;
            border: 1px solid #000;
            /*overflow: hidden;*/
        }
        .box>ul{
            list-style: none;
            display: flex;
        }
        li{
            width: 200px;
            height: 100px;
            flex-shrink: 0;
        }
        .box>ul>li:nth-child(odd){
            background: yellow;
        }
        .box>ul>li:nth-child(even){
            background: purple;
        }
    </style>
</head>
<body>

    <div class="box">
        <ul>
            <li>1</li>
            <li>2</li>
            <li>3</li>
            <li>4</li>
            <li>5</li>
            <li>6</li>
        </ul>
    </div>

</body>
</html>
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。