zoukankan      html  css  js  c++  java
  • 同时解决高度塌陷和外边距重叠的问题

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
        <style>
            .box1{
                width: 200px;
                height: 200px;
                background-color: #bfa;
            }
    
            /* .box1::before{
                content: '';
                display: table;
            } */
    
            .box2{
                width: 100px;
                height: 100px;
                background-color: orange;
                margin-top: 100px;
            }
    
    /* clearfix 这个样式可以同时解决高度塌陷和外边距重叠的问题,当你在遇到这些问题时,直接使用clearfix这个类即可 */
            .clearfix::before,
            .clearfix::after{
                content: '';
                display: table;
                clear: both;
            }
        </style>
    </head>
    <body>
    
        <div class="box1 clearfix">
            <div class="box2"></div>
        </div>
        
    </body>
    </html>
    不考虑业务场景,一味的争执技术的高下,都是耍流氓。
  • 相关阅读:
    日志模块
    模块介绍3
    模块介绍2
    模块介绍
    迭代器
    Python装饰器续/三元表达式/匿名函数
    Python装饰器详解
    LATEX LIAN XI
    BELLMAN 最短路算法
    B阿狸和桃子的游戏
  • 原文地址:https://www.cnblogs.com/leoych/p/14736003.html
Copyright © 2011-2022 走看看