html css两个图层之间覆盖的问题。怎么把下一个DIV设置成稍微覆盖一些上一个DIV
1个回答
展开全部
<html>
<head>
<style>
body {
position:relative;
z-index:0;
}
#div1 {
width:200px;
height:100px;
background-color:red;
z-index:10;
}
#div2 {
width:150px;
height:80px;
margin:-20px 0 0 20px;
background-color:blue;
z-index:20;
}
</style>
</head>
<body>
<div id="div1">div1</div>
<div id="div2">div2</div>
</body>
</html>
这样就可以了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询