css覆盖版本

时间:2017-02-08 08:15:50

标签: html css

我在网站上工作,当我检查一个元素.box时,我看到它有两个相同的css类,其中一个覆盖了另一个。

  .box { //theme.css:182
     background-color: green;
  }

  .box { //theme.css:1029
     background-color: red;
  }

当我去实际的css时,我只看到一种背景颜色:红色;但找不到对方。你知道它来自哪里吗?

1 个答案:

答案 0 :(得分:0)

如果浏览器中的inspect element developers工具看到backgrounds有两个.box,则代码中有两个背景。

尝试打开代码编辑器并按ctrl f,然后使用搜索工具搜索所有.box。您可能已经提供了.box两种background颜色,或者已经.box写了两次,或者在inline style中给了box html code或您已将多个css个文件与html.box background properties的{​​{1}}相关联。

请检查这一切。