使用 CSS 创建图层

要使用 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 创建图层的详细内容,更多请关注双恒网络其它相关文章!