如何使用伪元素修复css3阴影

时间:2011-08-06 21:50:50

标签: css css3 pseudo-element

使用:before:after创建的影子位于父div下。我该如何解决?父{4}的阴影效果很好。

enter image description here

CSS:

div

HTML:

article {
    display: block;
    position: relative;
    width: 90%;
    background: #ccc;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 1.5em;
    color: rgba(0,0,0, .8);
    text-shadow: 0 1px 0 #fff;
    line-height: 1.5;
    text-align: center;
    display: block;
    margin: 20em auto;
}


article:before, article:after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width:300px;
    background: rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0 15px 10px rgba(0,0,0, 0.7);   
    -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
    -webkit-transform: rotate(-3deg);    
    -moz-transform: rotate(-3deg);   
    -o-transform: rotate(-3deg);
}

article:after {
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    right: 10px;
    left: auto;
}

2 个答案:

答案 0 :(得分:1)

JS fiddle of the posted code, cleaned up a bit.

:before:after伪选择器允许您将内容添加到元素的文本节点。 您无法使用这些伪选择器将其他元素或节点添加到DOM中。

我不确定您要添加空白字符串的内容是什么内容,但是现在您正尝试将框阴影添加到文字< /强>

此外,您的CSS中已经完全乱码,并且您有一些流氓HTML标记。您应该花12秒时间查看您发布的代码,以便我们花时间阅读,以推断和帮助您的误解;如果你花时间在 问题上来尊重我们的时间,你会得到更好的帮助。

答案 1 :(得分:1)

您的代码可以正常使用,请参阅http://jsfiddle.net/NAEmW/2/。 在FF和Chrome中都测试好了,当然IE&lt; = 8是绝望的。

可以解决这个问题的一件事是CSS重置,所以要小心什么会被归零。