gpt4 book ai didi

css - 如何让文字重叠

转载 作者:行者123 更新时间:2023-11-28 13:51:02 27 4
gpt4 key购买 nike

我想让2个DIV水平重叠。我希望 DIV 中的内容也重叠。在下面的示例中,aaaaaaa 环绕 block A,预期的行为是让 aaaaaaa 从 div B 的左边界开始。我怎样才能做到这一点?

<div id="A" style="float:left;position:relative; background: #987321; width: 100px; height: 300px; z-index:5; "></div>`
<div id="B" style=" background: #555; width: 400px; height: 400px; ">aaaaaaaaaa</div>

Fiddle

最佳答案

试试这个:

CSS

<style>
div.a {
width: 100px;
height: 300px;
}

div.b {
position: relative;
z-index: 0;
width: 400px;
height: 400px;
margin-top: -300px;
border: 1px solid red;
}

div.c {
position: relative;
z-index: 1;
height: 100%;
border: 1px solid blue;
}
</style>

HTML

<div class="a">
<div class="c">div A's content</div>
<div class="b">div B's content xxxxx</div>
</div>

关于css - 如何让文字重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11373624/

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