当我尝试时尚(铬)
*{
background : black !important
}
所有背景图像都被覆盖,
我想知道是否有办法恢复背景图像或保持原样。
由于
答案 0 :(得分:1)
使用
background-color
代替background
*:not([background-image]) {
background-color:black!important;
}
div {
width: 200px;
height: 200px;
background-color: red;
}
.bg {
background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTqy1uodNithL90ttojytSP2imO4RC1y3qlm_ebZdRmNWh_8juV9Q');
}
*:not([background-image]) {
background-color:black!important;
}
<div>I am Test</div>
<div class="bg">I am Test2</div>