我有一个大问题:/我想先做一个div downstair。像那样>> 1 2 但我想,他们必须是中心,如何做到这一点?我有JSfiddle演示
<div class="center">
<div class="a">
(Text A)
</div>
<div class="b">
(Text B)
</div>
</div>
.center {
position: absolute;
width: 100%;
}
.center .a {
position: absolute;
width: 100%;
text-align:center;
}
.center .b {
position: absolute;
width: 100%;
text-align:center;
}
这是演示&gt;&gt; https://jsfiddle.net/3a77qa3o/
答案 0 :(得分:2)
您可以准确地查看以下链接。 更改位置:div的相对
https://jsfiddle.net/3a77qa3o/2/
.center {
position: absolute;
width: 100%;
}
.center .a {
position: relative;
width: 100%;
text-align:center;
}
.center .b {
position: relative;
width: 100%;
text-align:center;
}