問題:
如何確保動態子元素總是出現在其父元素的前面,無論它們在DOM 中的位置如何樹?
答案:
使用CSS,您可以在現代瀏覽器中透過Transform 3D 屬性實現此目的:
.parent { background: red; width: 100px; height: 100px; transform-style: preserve-3d; position: relative; } .child { background: blue; width: 100px; height: 100px; position: absolute; top: -5px; left: -5px; transform: translateZ(-10px); }
HTML 結構:
以上是如何使用 CSS Transform 3D 將子元素放置在其父元素後面?的詳細內容。更多資訊請關注PHP中文網其他相關文章!