CSS覆盖背景而不更改或恢复背景图像

时间:2017-07-09 02:09:07

标签: css

当我尝试时尚(铬) *{ background : black !important } 所有背景图像都被覆盖,

我想知道是否有办法恢复背景图像或保持原样。

由于

1 个答案:

答案 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>