screen tag in css showing error in netbeans?

550 Views Asked by At

I'm creating a sample application using netbeans having some css files in that. I'm using following tag:

@media screen and (max-width: 320px) {
    #hero{height: 480px;}
    .herocontent{padding-top: 100px; padding-bottom: 30px;}
}

This tag is showing an error as "un expected symbols found and" message.

@media only screen and (max-width: 500px) {
    .gridmenu {
        width:100%;
    }
}

This tag is showing error as "un expected symbol found screen" message. Please help me to resolve these issues.

2

There are 2 best solutions below

0
On

perhaps a NetBeans bug, see this https://netbeans.org/bugzilla/show_bug.cgi?id=177048

0
On

Since the above code is technically correct it sounds like this is a bug in the application. Try dropping the only screen and and screen and since they are not super necessary and see if that helps! -GL