GitHub 6956★

Have you seen CSS Scan?

The fastest and easiest way to check, copy and edit CSS.

Learn more →

CSS Scan logo

Spinner

HTML

<div class="spinner"></div>

CSS

.spinner {
/* Size */
height: 4rem;
width: 4rem;

/* Create a curve at the top */
border: 4px solid #d1d5db;
border-top-color: #3b82f6;
border-radius: 50%;

animation: spinner 800ms linear infinite;
}

@keyframes spinner {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
Demo

See also

Follow me on and to get more useful contents.