如何重叠div

问题描述 投票:0回答:2

我正在尝试产生以下结果: 期望的结果 然而到目前为止我已经做到了这一点并且我被困住了。 我得到了什么

这是我的代码:

.base {
  background: #e2e2e2;
  width: 1020px;
  height: 350px;
  position: absolute;
  top: 100px;
  left: 130px;
}
<div class="section5" style="width:100%;background-color:#f5f5f5;height:550px;position: relative;">
  <div class="base"></div>
  <div class="square1" style="width:255px;height:193px;background-color:#969696; z-index:1;"></div>
</div>

html css position z-index absolute
2个回答
2
投票

我们从 HTML 的基础开始:

<div class="section5">
    <div class="base"></div>
    <div class="square"></div>
    <div class="square"></div>
    <div class="square"></div>
    <div class="square"></div>
    <div class="square"></div>
    <div class="square"></div>
</div>

风格:

.section5 {
    position: relative;
    width: 800px;
    height: 600px;
    background-color: #f5f5f5
}

.base {
    position: relative;
    width: 600px;
    height: 400px;
    background-color: #e2e2e2;
    left: 100px;
    top: 100px;
}

.square {
    position: absolute;
    width: 150px;
    height: 120px;
    background-color: #969696;
}

现在我们可以使用

nth-of-type
odd
方块设为白色:

.square:nth-child(odd) {
    background-color: white;
}

要计算方块的绝对位置,如果我们希望第一个和最后一个方块与

50px
方块有
.section5
间隙,并且我们有
n
方块,我们可以计算两个方块之间的距离
d
相邻的方块如下所示:

d = (W - 2x - w) / (n - 1)

其中

W
.section5
的宽度,
x
是我们之前提到的
50px
间隙。所以这种情况下的
d
将是
110px
,所以每个方格的
left
需要比前一个方格增加
110px

同样的逻辑也适用于

top

通过应用这些,我们得到最终结果(以全视图打开)

.section5 {
    position: relative;
    width: 800px;
    height: 600px;
    background-color: #f5f5f5;
}

.base {
    position: relative;
    width: 600px;
    height: 400px;
    background-color: #e2e2e2;
    left: 100px;
    top: 100px;
}

.square {
    position: absolute;
    width: 150px;
    height: 120px;
    background-color: #969696;
}

/* Apply alternating background color to odd squares */
.square:nth-child(odd) {
    background-color: white;
}

/* Positioning the squares */
.square:nth-child(2) {
    left: 50px;
    top: 50px;
}

.square:nth-child(3) {
    left: 160px;
    top: 126px;
}

.square:nth-child(4) {
    left: 270px;
    top: 202px;
}

.square:nth-child(5) {
    left: 380px;
    top: 276px;
}

.square:nth-child(6) {
    left: 490px;
    top: 354px;
}

.square:nth-child(7) {
    left: 600px;
    top: 430px;
}
<div class="section5">
    <div class="base"></div>
    <div class="square"></div>
    <div class="square"></div>
    <div class="square"></div>
    <div class="square"></div>
    <div class="square"></div>
    <div class="square"></div>
</div>

使用 CSS 变量的替代方法:

.square {
    position: absolute;
    width: 150px;
    height: 120px;
    background-color: #969696;
    left: calc(50px + 110px * var(--i));
    top: calc(50px + 76px * var(--i));
}

.square:nth-child(1) { --i: 0; }
.square:nth-child(2) { --i: 1; }
.square:nth-child(3) { --i: 2; }
.square:nth-child(4) { --i: 3; }
.square:nth-child(5) { --i: 4; }
.square:nth-child(6) { --i: 5; }

0
投票

它可能会有所帮助,它是在

z-index
的帮助下导出的,您可以调整其余的框。

.section5{
  width:100%;
  background-color:#f5f5f5;
  height:550px;
  position: relative;
  z-index:0;
}
.square1{
  width:255px;
  height:193px;
  background-color:#969696; 
  position: relative;
  z-index:1;
}
.base{
    background:#e2e2e2;
    width:1020px;
    height:350px;
    position: absolute;
    top: 100px;
    left:130px;
  z-index: -1;
}
<div class="section5">
    <div class="base"></div>
    <div class="square1"></div>
</div>

© www.soinside.com 2019 - 2024. All rights reserved.