HTML框架,如何制作出来这个效果?

发布网友 发布时间:2022-04-22 01:11

我来回答

1个回答

热心网友 时间:2024-03-05 02:20

代码:

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8" />

    <title>懂点君</title>

    <style type="text/css">

        * {

            margin: 0;

            padding: 0;

        }

        html, body {

            height: 100%;

        }

        .wrap {

            width: 300px;

            height: 300px;

        }

        .wrap div:nth-child(1) {

            float: left;

            width: 200px;

            height: 100px;

            background-color: #000;

        }

        .wrap div:nth-child(2) {

            float: right;

            width: 100px;

            height: 200px;

            background-color: #39f;

        }

        .wrap div:nth-child(3) {

            float: right;

            width: 100px;

            height: 100px;

            background-color: pink;

        }

        .wrap div:nth-child(4) {

            float: left;

            width: 100px;

            height: 200px;

            background-color: yellow;

        }

        .wrap div:nth-child(5) {

            float: right;

            width: 200px;

            height: 100px;

            background-color: red;

        }

    </style>

</head>

<body>

    <div class="wrap">

        <div>1</div>

        <div>2</div>

        <div>3</div>

        <div>4</div>

        <div>5</div>

    </div>

    <script type="text/javascript"></script>

</body>

</html>

效果:

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com