Advertisement
wpgenie

How to change progress bar color

Jun 2nd, 2020 (edited)
1,371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <!-- visit us - https://wpgenie.org -->
  2.  
  3.  
  4. <!-- How to change progress bar color -->
  5. <!-- also check https://jsfiddle.net/8pk0Low4/ -->
  6.  
  7. <style>
  8.  
  9. progress[value]::-webkit-progress-bar {
  10.   background-color: whiteSmoke;
  11. }
  12.  
  13. progress[value]::-webkit-progress-value {
  14.     background-color:red;
  15. }
  16.  
  17. progress {
  18.   border: none;
  19.   background: crimson;
  20. }
  21.  
  22. progress::-webkit-progress-value {
  23.   background: lightblue;
  24. }
  25.  
  26. progress::-moz-progress-bar {
  27.   background: lightcolor;
  28. }
  29.  
  30. progress::-webkit-progress-value {
  31.   background: red;
  32. }
  33.  
  34. progress::-webkit-progress-bar {
  35.   background: blue;
  36. }
  37. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement