的overflow:hidden
定義指出:溢出:隱藏在div標籤影響的背景顏色
the overflowing content is completely hidden, not accessible to the user.
來自:http://quirksmode.org/css/css2/overflow.html
但我很好奇這個問題從我的js小提琴: https://jsfiddle.net/gd62qmr3/2/
我注意到的一件事情是,在將溢出設置爲隱藏之後,它給了邊界顏色?
<div style="background-color:green;overflow:hidden;">
<p>test</p>
</div>
我想知道爲什麼會發生這種行爲?如果沒有溢出,確切的塊元素將具有綠色背景顏色,但是如果溢出將給背景顏色帶來邊緣。
OOOOO我明白了,謝謝你的詳細解答 –