简体   繁体   中英

Safari does not load media queries

This is not the first time, safari is ignoring my media queries. I am using the below style in .scss/sass .

    #reality-check-content {
    @media screen and (max-width: 480px){
        width: 45% !important;
    }
   }

When i test on chrome it works and return

 @media screen and (max-width: 480px)
 #reality-check-content {
   width: 45%!important;
 } 

Likewise in firefox it works . However, in safari it does not , i just dont see my media queries. This is not the first time, i tried hiding an element the other day , it works in every browser but safari. The point is it does not seem to be loading my styling.

You have to use brackets for @media queries.

@media screen and (max-width: 480px){
  #reality-check-nav {
    width: 45%!important;
  }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM