Skip to main content
<\!-- Back --> <\!-- Header -->

CSS Generators

Progress Bar Generator

Design custom CSS progress bars with live preview, animated stripes, gradients, and presets. Copy-paste ready code.

<\!-- Sponsored: Carbon Ads -->
<\!-- ═══ Controls ═══ -->
<\!-- Presets -->

Presets

<\!-- Dimensions -->

Dimensions

<\!-- Colors -->

Colors

<\!-- Fill -->

Fill & Animation

<\!-- Label -->

Label

<\!-- Reset -->
<\!-- ═══ Preview & Code ═══ -->
<\!-- Live Preview -->

Live Preview

65%
<\!-- CSS Code -->

CSS Code

.pb-container {
  width: 400px;
  height: 24px;
  border-radius: 12px;
  background: #1a1a2e;
  overflow: hidden;
  position: relative;
}

.pb-fill {
  width: 65%;
  height: 100%;
  border-radius: 12px;
  background: #00ffcc;
  transition: width 0.3s ease;
}

.pb-label {
  font-size: 13.200000000000001px;
  font-weight: 700;
  font-family: 'SF Mono', 'Fira Code', monospace;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.7);
}
<\!-- HTML Code -->

HTML Code

<div class="pb-container">
  <div class="pb-fill">
    <span class="pb-label">65%</span>
  </div>
</div>
<\!-- Related Tools -->