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

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

慕勒9389563

2020-03-21 16:17

<!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>


写回答 关注

2回答

  • 霍洛夫斯基
    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

    你在盒子里面嵌套了盒子

    霍洛夫斯基 回复慕勒9389...

    把margin:5px 15px 10px 15px;删了后 margin-top以及margin-left单独写可以的

    2020-03-21 19:14:14

    共 2 条回复 >

初识HTML(5)+CSS(3)-升级版

HTML(5)+CSS(3)基础教程8小时带领大家步步深入学习标签用法和意义

1225810 学习 · 18234 问题

查看课程

相似问题