我有一个div
,它有一个背景图像。但我终于明白,我忘记div
了底部的另一个背景。所以我使用了:after
伪并插入了一个。
进入的背景:after
应该是一个透明的图像,可以很好地与身体的背景一起褪色。但是现在父级的背景div
正在落后于:after
伪元素中的内容。
有什么办法可以让父级的背景div
不在我的:after
伪元素中显示?
编辑
这里是我的代码
.foo{
height: 30px;
padding-bottom: 20px;
background: url(i/myimage.png) no-repeat;
}
.foo:after{
display: block;
position: absolute;
right: 0;
background: url(i/pseudo-elem-bg.png) no-repeat;
content: ' ';
height: 20px; /*takes the bottom padding
}