Skip to content

Instantly share code, notes, and snippets.

@WeiChiaChang
Created July 26, 2017 10:08
Show Gist options
  • Select an option

  • Save WeiChiaChang/abe92ca2e8da86ef69560b63903e8764 to your computer and use it in GitHub Desktop.

Select an option

Save WeiChiaChang/abe92ca2e8da86ef69560b63903e8764 to your computer and use it in GitHub Desktop.
Simple Pure CSS Progress Bar
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta chatset="UTF-8" />
<title>CSS Progress Bar</title>
<style>
.wrapper {
width: 500px;
}
.progress-bar {
width: 100%;
background-color: #e0e0e0;
padding: 3px;
border-radius: 3px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .2);
}
.progress-bar-fill {
display: block;
height: 22px;
background-color: #659cef;
border-radius: 3px;
transition: width 500ms ease-in-out;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="progress-bar">
<span class="progress-bar-fill" style="width: 70%;"></span>
</div>
</div>
</body>
</html>
@alvesoaj

Copy link
Copy Markdown

Thank you!

@mrtoluadesina

Copy link
Copy Markdown

This is still very helpful

@fhulufhelo

Copy link
Copy Markdown

nice

@charlesreitz

Copy link
Copy Markdown

Tks

@sbin0819

Copy link
Copy Markdown

Thanks

@nour-sidaoui

Copy link
Copy Markdown

Clean, neat and does the job!
Thanks

@abdoachhoubi

Copy link
Copy Markdown

Thanks!

@KoolKeith

Copy link
Copy Markdown

Beautiful. Exactly what I needed !

@kavinduUdhara

Copy link
Copy Markdown

thanks... really easy to customize

@Mahmoud6867

Copy link
Copy Markdown

thanks man great effort

@anjalee-kulasinghe

Copy link
Copy Markdown

Thank you!

@kkkristo

kkkristo commented Oct 9, 2023

Copy link
Copy Markdown

superb. thank you :)

@abhiupadhyay-Dev

Copy link
Copy Markdown

thanks

@Munyasi

Munyasi commented Dec 27, 2023

Copy link
Copy Markdown

Thanks

@marcusglowe

Copy link
Copy Markdown

thank you

ghost commented Jul 2, 2024

Copy link
Copy Markdown

thanks a lot...

@javirambo

Copy link
Copy Markdown

excellent, thanks!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment