.box { width: 100px; height: 100px; background: red;}
.bd { width: 100%; padding: 10px; background: black;}
<div class="box"><div class="bd"></div> </div> 如上結構,子元素將會溢出 解決方法:CSS3:
加入box-sizing:border-box;屬性便可解決
通常的方法:父元素設置padding
例:
<div class="box" style="padding-right: 20px;"><div class="bd"></div></div>