◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
要使用 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>
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。