我正在關注這篇文章https://css-tricks.com/almanac/properties/w/width/,試圖瞭解這個規則是如何工作的。CSS fit-content和max-content有什麼區別?
我有這樣的例子:
*{margin:0; padding:0}
.box{
background: lightgreen;
margin: 0 auto;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
}
<div class="box">
<img src="https://tyrannyoftradition.files.wordpress.com/2012/05/cutest-kitten-hat-ever-13727-1238540322-17.jpg" alt="" />
<figure>Yes, put some text here that is wider than the image above to try some new rules</figure>
</div>
文章說,裝修的內容可用於中心未知寬度的一個div margin: x auto;
,但如果更改適合 - 在這個例子中最大內容的內容,無論如何這是工作,他們似乎總是以相同的方式行事。
有人知道這兩個規則有什麼區別,在哪些情況下我應該使用其中一種?
經過19年的前端開發,我不知道這些。感謝提高認識! – connexo
雖然http://caniuse.com/#feat=intrinsic-width尚未得到很好的支持 – Aaron