CSS Spinner Generator

Home/Tools/Spinner Generator

Generate customizable loading spinners and indicators.

No sign-up neededRuns in your browserProduction-ready CSS

Spinner Type

Appearance

48px
4px
1s

Preview

Generated CSS
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #6366f120;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}