selector { animation: giro 10s linear infinite; } @keyframes giro{ 0%{ transform: rotate(0deg); } 100%{ transform: rotate(360deg); } }