Skip to content

Instantly share code, notes, and snippets.

@johnparn
Created July 3, 2019 18:59
Show Gist options
  • Save johnparn/fb3362023ffb9de3dcb79050d07ee2b1 to your computer and use it in GitHub Desktop.
Save johnparn/fb3362023ffb9de3dcb79050d07ee2b1 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Progress bar</title>
<style>
progress {
width: 100%;
height: 2px;
-webkit-appearance: none;
}
::-webkit-progress-bar {
background-color: grey;
}
::-webkit-progress-value {
background-color: orange;
}
</style>
</head>
<body>
<progress value="70" max="100">70%</progress>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment