但我无法将图像(绿框)设置到位。
我不能将绿色图像居中并将其部分设置在橙色div之上。
示例代码here
<div class="header-container">
<div class="nav-container">
<div class="logo">
<a href="1">Click!</a>
</div>
<div class="nav">
<a href="2">Click!</a>
</div>
</div>
<div class="header-image">
<div class="image">
<a href="3">Click!</a>
</div>
</div>
<div class="menu-container">
<a href="4">Click!</a>
</div>
.nav-container{
width: 100%;
height: 50px;
background: orange;
}
.logo{
width: 25%;
height: 40px;
margin: 5px;
background-color: lightblue;
float: left;
}
.nav{
width: 25%;
height: 40px;
margin: 5px;
background-color: lightgreen;
float: right;
}
.header-image{
width: 100%;
border: 1px solid green;
position: relative;
z-index: 2;
text-align: center;
}
.image{
height: 100px;
width: 60%;
background: green;
opacity: 0.6;
}
.header-image a{
padding: 40px 0;
}
.menu-container{
width: 100%;
border: 1px red solid;
height: 40px;
margin-top: 50px;
}
答案 0 :(得分:2)
我上传了你的jsfiddle here。
添加以下css:
.header-image {
position: absolute;
top: 40px;
left: 20%;
}
还为.menu-container
.menu-container {
margin-top: 80px; //instead of 50px
}
我把它定位为绝对的,因为这样它可以根据身体的相对位置去任何你想要的地方。
答案 1 :(得分:1)
将其添加到image
应该有效:
margin:0 auto;
position:relatve;
z-index:66;
margin-top:-10px
答案 2 :(得分:0)
尝试this
只更改了css
body,html{margin: 10px;}
.header-container{
width: 100%;
}
a{
text-decoration:none;
color:#000;
padding: 10px 0px;
display: block;
text-align: center;
}
.nav-container{
width: 100%;
height: 50px;
background: orange;
}
.logo{
width: 25%;
height: 40px;
margin: 5px;
background-color: lightblue;
float: left;
}
.nav{
width: 25%;
height: 40px;
margin: 5px;
background-color: lightgreen;
float: right;
}
.header-image{
width: 100%;
border: 1px solid green;
position: relative;
z-index: 2;
text-align: center;
}
.image{
height: 100px;
width: 60%;
margin: 0 auto;
margin-top: -20px;
background: green;
opacity: 0.6;
}
.header-image a{
padding: 40px 0;
}
.menu-container{
width: 100%;
border: 1px red solid;
height: 40px;
margin-top: 50px;
}
只需将其添加到您的图片类:
margin: 0 auto;
margin-top: -20px;