Search code examples
cssmedia-queries

media queries css syntax error, shows in sublime text


this is not sublime problem, my code

@media(min-width:801px){
    margin: 0 auto;
    margin-top: 40px;
    margin-left: 370px;
}

shows in sublime the margin is in white color.. then I test in my browser, and as expected, the css doesn't apply.. the syntax above should be fine.. what is this happen?


Solution

  • You need to define a selector within the media query, e.g.

    @media (min-width: 801px) {
        body {
            margin: 0 auto; 
            margin-top: 40px;
        }
    }
    

    http://jsfiddle.net/g7MVx/2/