cssbeautify icon indicating copy to clipboard operation
cssbeautify copied to clipboard

@media query bug

Open rkhat opened this issue 10 years ago • 0 comments

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. */
}

rkhat avatar Dec 21 '15 09:12 rkhat