欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2024-03-15 08:26:59
...
<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值,而非总宽度值.