问答详情
源自:12-12 宰相肚里能撑船 - 使用padding为盒子设置内边距(填充)

下面代码为什么margin-bottom以及margin-right不起作用啊?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<title>填充</title>

<style type="text/css">

#box1,#box2{

    width:100px;

    height:100px;

    

    border:1px solid red;

    /*display:inline;*/

}

#box2{

    margin:5px 15px 10px 15px;

}

</style>

</head>

<body>

<div id="box1">盒子1

    <div id="box2">盒子2</div>

</div>

</body>

</html>


提问者:慕勒9389563 2020-03-21 16:17

个回答

  • 霍洛夫斯基
    2020-03-21 16:30:55


    <head>


    #box2{

    margin-top: 10px;

    margin-bottom: 100px;

    }

    </style>

    </head>

    <body>

    <div id="box1">盒子1</div>

    <div id="box2">盒子2</div>

    </body>

    这样写

  • 霍洛夫斯基
    2020-03-21 16:27:45

    你在盒子里面嵌套了盒子