0
点赞
收藏
分享

微信扫一扫

CSS--box+float常见网页布局

慕容冲_a4b8 2022-02-19 阅读 167
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        li{
            list-style: none;
        }
        .top{
            height: 50px;
            background-color: gray;
        }
        .banner{
            width: 980px;
            height: 150px;
            margin: 10px auto;
            background-color: grey;
        }
        .box{
            margin: 0 auto;
            width: 980px;
            height: 300px;
            background-color: pink;
        }
        .box li{
            float: left;
            width: 237px;
            height: 300px;
            background-color: grey;
            margin-right: 10px;
        }
        .box .last{
            margin-right: 0;
        }
        .footer{
            height: 200px;
            background-color: grey;
            margin-top: 10px;
        }
    </style>
</head>
<body>
     <div class="top">top</div>
     <div class="banner">banner</div>
     <div class="box">
         <ul>
             <li>1</li>
             <li>2</li>
             <li>3</li>
             <li class="last">4</li>
         </ul>
     </div>
     <div class="footer">footer</div>
</body>
</html>
举报

相关推荐

0 条评论