美文网首页
横向不换行

横向不换行

作者: 我是要成为大神的男人 | 来源:发表于2020-07-08 19:16 被阅读0次
    <!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>
    

    相关文章

      网友评论

          本文标题:横向不换行

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