我有一个具有背景图像和透明背景颜色的元素.我希望IE回归纯色.
.element {
background: url(image.png);
background-color: #000; /* should be IE fallback */
background-color: rgba(0,0.5);
}
最佳答案
试试这个:
原文链接:https://www.f2er.com/css/427254.html.element {
background: url(image.png);
background-color: #000; /* IE 8 */
background-color: rgba(0,0.5);
*background-color: #000; /* IE 7 */
}