重叠样式需要主要CSS样式解释
z-index 重叠顺序属性(-1为最顶部,数值越大越偏向顶部)
position:relative和position:absolute设置对象属性为可定位(可重叠)
left right top bottom绝对定位具体位置设置
<!doctype html><html>
<head>
<meta charset="utf-8">
<title>test</title>
<style type="text/css">
#father{
position:relative/*父盒子位置要用relative*/
margin:20px auto
width:400px
height:100px
border:1px solid red
}
#father #a{
position:absolute/*子盒子位置要用absolute*/
width:100%
height:50px
background:blue
opacity:0.6
z-index:2
}
#father #b{
position:absolute/*子盒子位置要用absolute*/
width:100%
height:80px
background:#F4AF19
text-align:right
z-index:1
}
</style>
</head>
<body>
<!--按上面的CSS定位方法布局就会重叠,那个子盒子在前面用Z-INDEX 决定-->
<div id="father">
<div id="a">我是A盒子</div>
<div id="b">我是B盒子</div>
</div>
</body>
</html>
应该对你有帮助的!没太搞懂你问的具体含义,我就猜一猜一般人经常碰到的问题好了你设一下body{margin:0padding:0}
每次写样式都记得设置一下
一般情况,如果你确认样式没写错,而间隙空的又比设置的多了,那么你就首先考虑设一下margin:0padding:0来解决一下,如果不能解决再考虑其他问题