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
}