关于padding-bottom

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

FLY_F

2018-01-20 17:28

为什么我觉得padding-bottom不可控?这么都觉得padding:10px下面的填充和上左右不一样!

写回答 关注

2回答

  • BitBiten
    2018-01-20 18:37:22

    不会吧。。。你看错啦?padding是内边距,就是内部元素和边框的距离

    <!DOCTYPE HTML>

    <html>

    <head>

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

    <title>填充</title>

    <style type="text/css">

    #box1{

        width:100px;

        height:100px;

        padding:10px;

        border:1px solid red;

    }

    #box2{

        background-color:#897;

        height:100px;

        width:100px;

    }

    </style>

    </head>

    <body>

    <div id="box1"><div id="box2"></div></div>


    </body>

    </html>

    试一下这段代码就知道了

  • 何以解忧唯有yy
    2018-01-20 18:33:38

    可能你感觉是正确。因为你设置的宽高是不一样。PS:这话很短,理解很难

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

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

1225297 学习 · 18230 问题

查看课程

相似问题