Rotate a block in CSS March 9, 2023Css Codessandeepdhand Just copy and paste .rotate { animation: rotation 1s infinite linear; } @keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }Copy