BFC

作者: friendshi洛初Udo邭 | 来源:发表于2021-01-07 12:35 被阅读0次

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

    <style>

        *{

            padding:0;

            margin:0;

        }

        .col:nth-of-type(1) {

            float: left;

            width: 200px;

            height: 300px;

            margin-right: 10px;

            background-color: red;

        }

        .col:nth-of-type(2) {

            overflow: hidden;/*创建bfc */

            height: 300px;

            background-color: purple;

        }

    </style>

</head>

<body>

    <!-- <script src="index.js"></script> -->

    <div class="col"></div>

    <div class="col"></div>

</body>

</html>

相关文章

网友评论

      本文标题:BFC

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