AUTO与100%的分别
width:auto
or width:100%
width:auto
width:auto;
height:100px;
padding:0px 20px;
width:100%
width:100%;
height:100px;
padding:0px 20px;
比较
- auto默认宽度自适应整个视窗,内边距部分则是从中减去。有点类似于
border-box
的感觉 - 100%其实是个固定的宽度值,内边距在此基础上增加。