Before even embarking on this project, I\'d like to know if it\'s at all possible to reverse the progress bar found in the bootstrap framework, so it can display a value going f
You can adjust an actual progress bar element via CSS in a couple different ways.
progress { transform: rotate(180deg); }
or better yet
progress { direction: rtl; }