将元素堆叠在彼此之上可以通过CSS的定位属性和层叠上下文来实现。以下是一种常见的方法:
示例代码:
<style>
.parent {
position: relative;
}
.child {
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.child2 {
position: absolute;
top: 0;
left: 0;
z-index: 2;
}
</style>
<div class="parent">
<div class="child">子元素1</div>
<div class="child2">子元素2</div>
</div>
示例代码:
<style>
.parent {
position: relative;
z-index: 1;
}
.child {
position: relative;
z-index: 2;
}
.child2 {
position: relative;
z-index: 3;
}
</style>
<div class="parent">
<div class="child">子元素1</div>
<div class="child2">子元素2</div>
</div>
以上是一种常见的方法,具体的实现方式可以根据实际需求和布局来选择。
领取专属 10元无门槛券
手把手带您无忧上云