3

我有一个默认的 CSS 表,它使用图像作为背景,但对于网站的移动版本,我想用纯色覆盖图像。

我的默认样式表如下所示:

background-image: url('../img/gray_hash.png'); 

我当前的 CSS 文件如下所示:

background-image: url('');  
background-color: #ffffff; !important;

这是正确的方法吗?如果我只是添加背景颜色,图像似乎优先。

4

2 回答 2

12

否。要删除背景图像,请使用background-image:none

于 2012-12-01T03:22:44.557 回答
0

我只会使用速记

background: url('../img/gray_hash.png'); // (with any other properties needed)

并覆盖

background: white;
于 2012-12-01T06:27:37.503 回答