ボックスモデルのマージン

1.下マージン

コード:

<!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>盒子模型之外边距</title>
    <style>
        div{
            width: 200px;
            height: 200px;
            background-color: pink;
        }

        .one{
            margin-bottom: 20px;
        }
    </style>
</head>

<body>
       <div class="one">1</div>
       <div>2</div>
</body>

</html>

実行結果:
        

 

2.トップマージン

コード:

<!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>盒子模型之外边距</title>
    <style>
        div{
            width: 200px;
            height: 200px;
            background-color: pink;
        }


    
     .two{
           margin-top: 20px;
     }

    </style>
</head>

<body>
       <div class="one">1</div>
       <div class="two">2</div>
</body>

</html>

実行結果:

 3.マージンの省略形

マージン:30ピクセル、上下、左右は30ピクセル

コード:

<!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>盒子模型之外边距</title>
    <style>
        div{
            width: 200px;
            height: 200px;
            background-color: pink;
        }

        /* .one{
            margin-bottom: 20px;
        } */
    
     .two{
           /* margin-top: 20px; */
           margin: 30px;
     }

    </style>
</head>

<body>
       <div class="one">1</div>
       <div class="two">2</div>
</body>

</html>

実行結果:

 

パディングに似ています

おすすめ

転載: blog.csdn.net/weixin_42900834/article/details/123455834