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

padding-bottom:0px;内容为什么不靠下面。

<style type="text/css">
#box1{
    width:100px;
    height:100px;
    padding-left:10px;
    padding-bottom:0px;
    border:1px solid red;
}
</style>
</head>
<body>
<div id="box1">盒子1 </div></body>

提问者:小屠屠 2016-07-27 21:45

个回答

  • BiuTHen96
    2016-07-28 00:09:22
    已采纳

    padding是内边距设置 内容还是从上面开始 你设置padding-bottom:0px;意思是你的下边框距离你内容的下端距离是0px

  • 幸福欧蒂斯3602659
    2016-07-27 21:48:27

    这是内边距