Search code examples
cssmedia-queries

Media query doesn't execute


I've got the following two media queries:

@media (max-width: 800px) {
        .login{
            margin-top: 5%;
        }
    }
}

@media (max-width: 204px) {
        .login{
            text-align: center;
            margin-right: 0%;
        }
    }
}

I must not understand something right.


Solution

  • Looks like you've got one too many closing braces which might be messing things up.

    @media (max-width: 800px) {
        .login {
            margin-top: 5%;
        }
    }
    
    @media (max-width: 204px) {
        .login {
            text-align: center;
            margin-right: 0%;
        }
    }