Ошибка про вводе

by satantx

HTML

<div></div>

CSS

div {
    width: 220px;
    height: 40px;
    background: #ccc;
    position: relative;
	-webkit-animation: 1s rotate ease ;
	animation: 1s rotate ease ;
	-moz-animation: 1s rotate ease ;
}

@-webkit-keyframes rotate {
    0%, 100% {margin: 0; background: #ccc;}
    20%,40%,60%,80% {margin: 0 0 0 -15px; background: #FCEAEA;}
    10%,30%,50%,70%,90% {margin: 0 -15px 0 0; background: #FCEAEA;}
}