I am creating a sample application using netbeans which has some css files in it. I am using the following tag:
@media screen and (max-width: 320px) { #hero{height: 480px;} .herocontent{padding-top: 100px; padding-bottom: 30px;} }
This tag shows the error as "expected characters found and."
@media only screen and (max-width: 500px) { .gridmenu { width:100%; } }
This tag shows the error as a message about the expected value of the character. Please help me solve these problems.
source share