senchalabs / cssbeautify

Reindent and reformat CSS
http://www.senchalabs.org/cssbeautify/
Apache License 2.0
674 stars 133 forks source link

@media query bug #46

Open rkhat opened 8 years ago

rkhat commented 8 years ago

The beautifier adds a semicolon inside the media query at the end. According to w3 css-validator, this is an error. Example:

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
}

Your beautifier will give:

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  };    /* The semicolon here will give an error. */
}