CSSLint/csslint

keyframes inside media query parsing error

aldarund opened this issue · 1 comments

@media screen and (min-width:701px) {
	@keyframes bounce {
		0% {
			transform: translateX(50%);
		}
		100% {
			transform: translateX(-50%);
		}
	}
}

Which is valid css produce a error by csslint

  2 2 Parsing Errors Expected RBRACE at line 2, col 2. @Keyframes bounce { All
  10 1 Parsing Errors Unexpected token '}' at line 10, col 1.}

Same issue...