您现在的位置:首页 > 博客 > css > 正文
如何让padding、margin不改变尺寸
http://www.bbnsc.com/      2022/5/15 12:29:08      来源:贝恩斯网络·技术博客      点击:

父元素css添加box-sizing:border-box即可。


<style>
inline-block{display:inline-block;}
#d1{width:700px;height:300px;background:#E6941A;padding:10px;box-sizing:border-box;}
#d2{width:100%;height:200px;background:#4D9EB3;}
</style>
box-sizing:border-box;
<div id="d1">
  <div id="d2"></div>
</div>
<div class="inline-block" style="background:black;color:white;width:700px;">标尺 width:700px</div>

发表评论(0)
姓名 *
评论内容 *
验证码 *图片看不清?点击重新得到验证码