in my version of TextMate 1 (the latest one) all media queries are marked as invalid which bothers me a lot:
@media screen and (max-width: 320px) {
...
}
How can this be fixed?
Thanks for any help.
in my version of TextMate 1 (the latest one) all media queries are marked as invalid which bothers me a lot:
@media screen and (max-width: 320px) {
...
}
How can this be fixed?
Thanks for any help.
Because they are invalid. The max-width
should be in brackets.
@media screen and (max-width: 320px) {
...
}
EDIT after question update - with the brackets, it validates fine in the latest version of TextMate.