Media Query Styles Not Overriding Original Styles

前端 未结 5 1948
面向向阳花
面向向阳花 2020-12-08 02:05

I\'m attempting to use some media queries for a website I\'m building. The problem I\'m having however, is while the media query styles are actually being applied, they\'re

5条回答
  •  佛祖请我去吃肉
    2020-12-08 02:20

    I have been at least 2 hours trying to find the override CSS problem till I found that my line comments where wrong... And the second definition of CSS wasn't working:

    So, don't be so stupid as I !:

    /* LITTLE SCREENS */ 
    
    @media screen and (max-width: 990px) {
        ... whatever ...
    }
    
    /*  BIG SCREENS */ 
    
    @media screen and (min-width: 990px) {
        ... whatever more ...
    }
    

    never use: Double bar as I did:

    // This is not a comment in CSS!
    
    /* This is a comment in CSS! */
    

提交回复
热议问题