Reputation: 1
I'm building my first ever site and teaching myself HTML and CSS. I ran my style sheet through W3C validator and got parse error messages for all my media queries, like the error below.
What am I doing wrong?
Parse Error screen and (min-width: 938px) { .drop-nav li { padding: 58px; } }
Here is my CSS:
@media only screen and (min-width: 938px) {
.drop-nav li {
padding: 58px;
}
}
Upvotes: 0
Views: 1214
Reputation: 1520
On the W3C validation page make sure the setting are set to CSS3.
Upvotes: 1