我正在使用以下 CSS 代码。我想要做的是,如果用户在 iPad 上,我希望背景图像为 headerold.jpg 或以某种方式使当前的 headernew.jpg 在 iPad 上正确显示。目前每个末端的一部分被切断。我已经尝试过@media 查询,但我无法让代码正常工作。任何帮助,将不胜感激。
谢谢罗杰
div.art-header-jpeg
{
position: absolute;
top: 0;
left:-50%;
width: 1344px;
height: 150px;
background-image: url('../img/headernew.jpg');
@media all and (max-width: 1000px) {background-image: url('../img/headerold.jpg');}
background-repeat: no-repeat;
background-position: center center;
}