CSS使您有機會創建不同分區的層。CSS層是指對相互重疊的元素應用z-index屬性。
z-index屬性與position屬性一起使用,以創建層的效果。您可以指定哪個元素應該位於頂部,哪個元素應該位於底部。
z-index屬性可以幫助您創建更複雜的網頁布局。下面是演示如何在CSS中創建層的示例。
<html> <head> </head> <body> <div style = "background-color:red; width:300px; height:100px; position:relative; top:10px; left:80px; z-index:2"> </div> <div style = "background-color:yellow; width:300px; height:100px; position:relative; top:-60px; left:35px; z-index:1;"> </div> <div style = "background-color:green; width:300px; height:100px; position:relative; top:-220px; left:120px; z-index:3;"> </div> </body> </html>
它將產生以下結果&負;