如何覆盖已经拥有的CSS背景!重要吗?

Dar*_*ath 6 css stylish

我试图用Stylish覆盖网站的背景,但它无法正常工作.该网站的背景css也有一个!重要的,它是压倒时尚的.

我的代码:

body {
  background-image: none !important; 
  background: black !important;
}
Run Code Online (Sandbox Code Playgroud)

有帮助吗?

Som*_*ens 5

您需要更加具体(例如CSS特殊性快速指南),例如,使用>选择器:

body {
  background-image: none !important; 
  background: black !important;
}

html > body {
  background-image: none !important; 
  background: red !important;
}
Run Code Online (Sandbox Code Playgroud)

联合会

  • 或`html> body` (2认同)