This is a workaround. It's not so good but it's very short and it works.
Usage: it's very similar to the usual progress bar, but there are two differences:
- You should set the bar height, not width
- Progress bar height is fixed (but it could be changed with inline style)
CSS:
.progress-vertical {
width: 20px;
height: 100px !important;
position: relative;
}
.progress-vertical .bar {
width: 100% !important;
position: absolute;
bottom: 0;
border-bottom-left-radius: inherit;
border-bottom-right-radius: inherit;
}
Example: http://jsfiddle.net/mQzj9/251/
Edit 1: Fixed wrong example link.
Edit 2: Thanks to Pavlo Mykhalov, the jQuery code is not needed anymore (CSS updated)
Edit 3: CSS link outdated, updated.