html - 如何在桌面上隐藏自定义背景(宽度超过992px)-LMLPHP

为什么显示自定义背景?这是我添加的CSS,它应该可以工作。

    @media (min-width: 992px) {

body.custom-background {
background-image: none !important;
display: none;   }


}

链接到网站:http://goo.gl/RgG2Ct(向下滚动,您将获得仅应在移动版本中使用的该条)

最佳答案

您可以尝试

@media screen and (min-width: 992px)

08-16 22:26