width:100%;与width:auto;的区别

<div>
<p>1111</p> </div> div{
  width:980px;
  background-color: #ccc;
  height:300px;
}
p{
width:100%;
  /*width:auto;*/
padding:10px;
  background-color:#000;
}

  

如果是p的width:100%,则说明p的width会得到980px就已经充满div区域,然后自己又有padding,所以会超出div。

而当width:auto时它是总体宽度(包括width,margin,padding,border)等于父级宽度(width,不包含父级的margin,padding,border),所以如果padding已经左右占去10px的空间,那么width给的值就是960px。

但无论是width:100%还是auto,其计算的参照都是父级内容区width值,而非总宽度值.

上一篇:height:100%和height:auto的区别


下一篇:width:100%和width:auto区别