我需要覆盖以下内联样式:
<div class="header" style="background:url(http://domain.org/headers/header_image.jpg) top right repeat-y;">
我已经尝试在外部样式表中添加以下内容,但它不起作用。
.header[style] {background-image:none;!important}
请问有什么建议吗?
我需要覆盖以下内联样式:
<div class="header" style="background:url(http://domain.org/headers/header_image.jpg) top right repeat-y;">
我已经尝试在外部样式表中添加以下内容,但它不起作用。
.header[style] {background-image:none;!important}
请问有什么建议吗?
你几乎得到它,只需进行以下更改,它应该可以工作
.header[style] {background-image:none !important;}
该!important
规则应仅在您的规则声明中!
参考..点击这里