問題:
為什麼不溢父/子上的隱藏屬性功能元素?
範例:
.parent { position: fixed; overflow: hidden; width: 300px; height: 300px; background: #555; } .children { position: fixed; top: 200px; left: 200px; width: 150px; height: 150px; background: #333; }
<div class="parent"> <div class="children"></div> </div>
答案:
CSS 剪輯: rect() 可以剪輯其父元素的固定定位元素。但是,它有一些警告:
請參閱更新的 JSFiddle 演示,以了解使用剪輯的範例:rect()。
附加說明:
以上是為什麼「overflow:hidden」不適用於固定位置的父元素和子元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!