/* css animation that spins a class around forever# */ .spinny{ animation: rotate 5s infinite; } @keyframes rotate { from { transform: rotate(360deg); } to { transform: rotate(-360deg); }}