0

我想要一个曲线水平阴影,它可以工作,但背景颜色会影响阴影

我有这个html:

<div class="dcontainer">
  <div class="dshadow curva curva-h">
    myshadow
  </div>
</div>

这个CSS:

.dcontainer {
    /*background-color: #f6f6f6;*/
    height: 140px;
}
.dshadow {
position:relative;
float:left;
width:40%;
padding:1em;
margin:2em 10px 4em;
background:#fff;
box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.dshadow:before,
.dshadow:after {
content:"";
position:absolute;
z-index:-2;
}

.curva:before {
top:21px;
bottom:10px;
left:0;
right:50%;
box-shadow:0 0 15px rgba(0,0,0,0.6);
border-radius:10px / 100px;
}

.curva-h:before {
top:50%;
bottom:0;
left:10px;
right:10px;
border-radius:100px / 10px;
}

如果我取消注释背景颜色阴影“曲线”消失,会发生什么???我不明白...

4

1 回答 1

1

您必须调整z-index容器的 ,使其低于阴影 -演示

.dcontainer {
    background-color: #f6f6f6;
    height: 140px;
    position: relative;
    z-index: -5;
}
于 2013-03-11T21:30:32.943 回答