为什么媒体查询无法在Chrome浏览器上运行?

时间:2019-10-07 08:02:16

标签: css media-queries

媒体查询不适用于Chrome浏览器。这是我的CSS,无法在chrome浏览器上使用。

@media screen and (min-width:320px) and (max-width:1000px) {
    .catalog-product-view section#body .product_page .detail_contentmain .detail_content {
       width: 100% !important;
    }
}

1 个答案:

答案 0 :(得分:0)

请先尝试使用此代码

@media screen and (min-width:320px) and (max-width:1000px) {
body{
   display: none !important;
}}

因为这是选择器的问题,而不是媒体查询的问题。