我正在努力解决这个问题。我有一个article
插入了两个元素的元素,:before
并且:after
它们都被绝对定位在该文章中。
在除 IE8 之外的所有浏览器中,z-index 堆叠都运行良好。它应该按照从下到上的顺序排列:
文章内容 > 淡出图像 > 图标
我已经尝试了一些不同的东西,最新的可以在这里看到:http: //jsfiddle.net/LtYMV/2/
我正在尝试的基本运行如下所示:
article {
// styles
}
article:before {
// icon background image used on inserted content
}
article:after {
// background image used on inserted content
}
我知道这有一些技巧,我似乎无法通过 z-index 值的任何组合来解决这个问题。帮助表示赞赏!