For Business
Login
Home
Assessments
Mytat Certificates
Community
Courses
Premium Courses
jobs
Practice
Upskilling
Projects
Help
Run ยป
CSS Animations Example
.spinner { width: 50px; height: 50px; border-radius: 50%; border: 4px solid #f3f3f3; border-top: 4px solid #007bff; animation-name: spin; animation-duration: 1s; animation-timing-function: linear; animation-iteration-count: infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }