Media Queries firing at wrong width

前端 未结 8 949
抹茶落季
抹茶落季 2020-12-07 18:08

I am building a responsive page and the media queries are firing at the wrong width size. I am using Chrome.

@media screen and (max-width: 1200px) {
 .logo-p         


        
8条回答
  •  温柔的废话
    2020-12-07 18:59

    Do you have iframes (or modals or smaller windows) loading the same CSS sheet with your media query ? If it's the case, it's a cache problem, and you need to link the CSS file with a dumb param like :

    
    

    In order to load the css file as a new file instead of taking the cached version ... I hope I'm clear :)

提交回复
热议问题