正如在difference between width auto and width 100 percent的答案中指定的寬度自動取全寬度,但在此demo寬度auto不取全寬度,但當我們對此應用100%只有它需要全寬。寬度auto如何實際取其元素?寬度自動和寬度的差值100%浮動元素
演示總結
HTML
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
CSS
ul{background-color: gray;}
li{background-color: red; float: left; clear: left; width: auto;}
你已經回答了這個.... http://stackoverflow.com/questions/17468733/difference-between-width-auto-and-width-100-percent/17468803#17468803 –
100%=父母的寬度: :; auto =取決於其他參數(顯示|浮動)可以作爲父母或儘可能少 – Svetoslav
是啊!我已經回答了這個問題,但是在我們浮動元素時詢問寬度auto。 –