我有2个div,square
和bar
。两者都使用auto
边距居中。但我想把酒吧放在广场上。我怎么能这样做?
HTML
<div class="square">square</div>
<div class="bar">square</div>
CSS
.square,.bar{
margin-left:auto;
margin-right:auto
}
.square{
background-color:blue;
width: 100px;
height: 100px;
}
.bar{
background-color:green;
width: 400px;
height: 40px;
}
Here 是小提琴。
答案 0 :(得分:0)
您可以这样做: http://jsfiddle.net/mz6rk/
我做了position:relative
并将栏放在-square_height/2 - bar_height/2
这确实假设您知道方形和条形的高度,但我不知道是否总是这样......
<强>更新强>
实际上,只有酒吧需要position:relative
(我把它放在小提琴上)。
答案 1 :(得分:0)
http://jsfiddle.net/atomicrevolution/P9yWK/5/
这是你的意思吗?
.square,.bar{
margin-left:auto;
margin-right:auto;
}
.square{
background-color:blue;
width: 100px;
height: 100px;
position: relative;
}
.bar{
background-color:green;
width: 400px;
height: 40px;
position: relative;
margin-top: -70px;
}