当背景图像被禁用时,我们的页面无法通过 wcag 2.0 AA 验证。(由于背景颜色)
我们希望保持目前的深色背景,但如果禁用图像,则将背景设为白色。以下是解决问题的聪明方法吗?
bg_top 是主要的背景图像。bg_secNavigation 是作为渐变的深色背景。
background-image: url(../images/bg_top.jpg), url(../images/bg_secNavigation.jpg);
background-repeat: no-repeat, repeat-x;
background-color: #fff;
background-position: center top, left top;