charset.css 324 B

1234567
  1. @charset "UTF-8";
  2. @charset "iso-8859-15";
  3. @charset 'iso-8859-15'; /* Invalid, wrong quoting style used */
  4. @charset "UTF-8"; /* Invalid, more than one space */
  5. @charset "UTF-8"; /* Invalid, there is a character (a space) before the at-rule */
  6. @charset UTF-8; /* Invalid, without ' or ", the charset is not a CSS <string> */