要使用 CSS 建立圖層,您可以嘗試執行下列程式碼。我使用了 z-index 屬性
<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>
以上是使用 CSS 建立圖層的詳細內容。更多資訊請關注PHP中文網其他相關文章!