我在网站上工作,当我检查一个元素.box时,我看到它有两个相同的css类,其中一个覆盖了另一个。
.box { //theme.css:182
background-color: green;
}
.box { //theme.css:1029
background-color: red;
}
当我去实际的css时,我只看到一种背景颜色:红色;但找不到对方。你知道它来自哪里吗?
答案 0 :(得分:0)
如果浏览器中的inspect element developers工具看到backgrounds
有两个.box
,则代码中有两个背景。
尝试打开代码编辑器并按ctrl f
,然后使用搜索工具搜索所有.box
。您可能已经提供了.box
两种background
颜色,或者已经.box
写了两次,或者在inline style
中给了box
html code
或您已将多个css
个文件与html
个.box
background properties
的{{1}}相关联。
请检查这一切。