我有一個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
}
請張貼您的問題代碼。 – Lowkase 2013-04-10 17:19:08