0

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.

Tintin81
  • 9,821
  • 20
  • 85
  • 178

1 Answers1

1

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.

enter image description here

Dan Blows
  • 20,846
  • 10
  • 65
  • 96