Box-shadow与其他元素重叠,我该如何解决?

时间:2016-03-24 12:47:36

标签: html css

基本上是因为HTML命令元素(最后一个元素的优先级高于其他元素),我的阴影与其他元素重叠。如果我在第一个元素上使用z-index,那么这是唯一一个不重叠的元素,我不知道如何为所有元素执行此操作。

这就是我目前所拥有的(忽略阴影大小差异,我故意这样做是为了看到我的问题):

this is what I currently have

这就是我应该拥有的: this is what I should have

这是我的代码:

CSS:

$scope.$on('Cat', function (event, args) {
    console.log("in");
    $scope.catid = args.catID;
});

HTML:

.timer-container {
  font-size: 0;
}
.timer-container .timer {
  font-size: 16px;
  width: 110px;
  height: 170px;
  display: inline-block;
  background-color: #ffffff;
  color: red;
  margin: 0 5px;
  -webkit-box-shadow: 0 26px 57px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 26px 57px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 26px 57px 0 rgba(0, 0, 0, 0.2);
}
.timer-container .time {
  height: 120px;
  font: 4em serif;
  border-bottom: 1px solid #bdd9f6;
  padding: 15px 0 0;
}
.timer-container .label {
  height: 50px;
  font: 1.125em serif;
  text-transform: uppercase;
}

1 个答案:

答案 0 :(得分:1)

这可能是一种方式。将您的影子框与计时器分开,这样您就可以使用z-index将它们放在计时器后面。

.timer-container {
  font-size: 0;
  position: relative;
}

.timer-container .timer {
  font-size: 16px;
  width: 110px;
  height: 170px;
  display: inline-block;
  background-color: #ffffff;
  color: red;
  margin: 0 5px;
}

.timer-container .time {
  height: 120px;
  font: 4em serif;
  border-bottom: 1px solid #bdd9f6;
  padding: 15px 0 0;
}

.timer-container .label {
  height: 50px;
  font: 1.125em serif;
  text-transform: uppercase;
}

.timer-shadow {
  position: absolute;
  left: 0;
  top: 0;
  z-index:-1;
}

.timer-shadow span {
  margin: 0 5px;
  display: inline-block;
  -webkit-box-shadow: 0 26px 57px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 26px 57px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 26px 57px 0 rgba(0, 0, 0, 0.2);
  width: 110px;
  height: 170px;
}
<div class="timer-container">
  <div class="timer" style="z-index:4;">
    <div class="time">
      <span>12</span>
    </div>
    <div class="label" style="z-index:3;">
      <span>jours</span>
    </div>
  </div>
  <div class="timer" style="z-index:2;">
    <div class="time">
      <span>17</span>
    </div>
    <div class="label">
      <span>heures</span>
    </div>
  </div>
  <div class="timer" style="z-index:1;">
    <div class="time">
      <span>48</span>
    </div>
    <div class="label">
      <span>minutes</span>
    </div>
  </div>
  <div class="timer">
    <div class="time">
      <span>05</span>
    </div>
    <div class="label">
      <span>secondes</span>
    </div>
  </div>
  <div class="timer-shadow">
    <span></span>
    <span></span>
    <span></span>
    <span></span>
  </div>
</div>