盒模型 & background-color

<html>
    <head></head>
    <body>
        <div class="content"></div>
    </body>
    <style>
        .content{
            width:100px;
            height:100px;
            background:#000;
            padding:10px;
            border:10px solid transparent;
        }
    </style>
</html>

css盒模型(content-box\border-box对背景的影响)
注:上述两种情况都是,背景会压在border之下重叠

  

posted @ 2020-08-03 22:19  671_MrSix  阅读(155)  评论(0编辑  收藏  举报