gpt4 book ai didi

html - 当两个 div 使用自动边距居中时,如何将一个 div 放在另一个之上?

转载 作者:行者123 更新时间:2023-11-28 10:18:21 25 4
gpt4 key购买 nike

我有 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 是 fiddle 。

最佳答案

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;
}

关于html - 当两个 div 使用自动边距居中时,如何将一个 div 放在另一个之上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24123534/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com