Home / Components / Alert Components / Tailwind CSS Progress Bar With Label Chip

Tailwind CSS Progress Bar With Label Chip

This is Tailwind CSS Progress Bar With Label Chip component and it makes use chip to give emphasize on the progress label

<div class="bg-white p-8 shadow-lg shadow-slate-200 rounded-lg w-full md:w-2/3 lg:w-1/3">
  <div class="flex items-center justify-between">
	<span class="text-slate-400 text-sm text-slate-500">Progress 1</span>
	<span class="px-2 py-1 bg-teal-50 rounded-lg text-xs text-teal-400 font-medium min-w-[46px] text-center">0%</span>
  </div>

  <div class="w-full bg-slate-100 h-1 mb-6 mt-2">
	<div class="bg-teal-400 h-1 rounded" style="width: 0%"></div>
  </div>

  <div class="flex items-center justify-between">
	<span class="text-slate-400 text-sm text-slate-500">Progress 2</span>
	<span class="px-2 py-1 bg-teal-50 rounded-lg text-xs text-teal-400 font-medium min-w-[46px] text-center">25%</span>
  </div>

  <div class="w-full bg-slate-100 h-1 mb-6 mt-2">
	<div class="bg-teal-400 h-1 rounded" style="width: 25%"></div>
  </div>

  <div class="flex items-center justify-between">
	<span class="text-slate-400 text-sm text-slate-500">Progress 3</span>
	<span class="px-2 py-1 bg-teal-50 rounded-lg text-xs text-teal-400 font-medium min-w-[46px] text-center">50%</span>
  </div>

  <div class="w-full bg-slate-100 h-1 mb-6 mt-2">
	<div class="bg-teal-400 h-1 rounded" style="width: 50%"></div>
  </div>

  <div class="flex items-center justify-between">
	<span class="text-slate-400 text-sm text-slate-500">Progress 4</span>
	<span class="px-2 py-1 bg-teal-50 rounded-lg text-xs text-teal-400 font-medium min-w-[46px] text-center">75%</span>
  </div>

  <div class="w-full bg-slate-100 h-1 mb-6 mt-2">
	<div class="bg-teal-400 h-1 rounded" style="width: 75%"></div>
  </div>

  <div class="flex items-center justify-between">
	<span class="text-slate-400 text-sm text-slate-500">Progress 5</span>
	<span class="px-2 py-1 bg-teal-50 rounded-lg text-xs text-teal-400 font-medium min-w-[46px] text-center">100%</span>
  </div>

  <div class="w-full bg-slate-100 h-1 mt-2">
	<div class="bg-teal-400 h-1 rounded" style="width: 100%"></div>
  </div>
</div>
                    

2 years ago

635

How to install and add to your project?

Step 1: Include Scripts and Styling CDN inside the head tag

<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/charts.css/dist/charts.min.css">
<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script>

Step 2: Copy the Tailwind CSS Progress Bar With Label Chip component code above as you need it

Step 3: Preview the component in your browser 🚀

Step 4: For production release make sure to use the official Tailwind CSS Installation

You are done 🎉

Credits or Attribution

If you enjoy using our components, please do give us (PostSrc) credit in your project footer section or about page. Copy the HTML below for attribution.

<a href="https://postsrc.com/components" target="_blank" rel="noopener" title="PostSrc Components - Collection of Tailwind CSS components for everyone to use"><img style="width: auto; height: 46px;" src="https://postsrc.com/img/attr.png" alt="PostSrc logo"></a>

Welcome to PostSrc V3

PostSrc Dark Logo

You have to login to favorite this