How is it possible to make vertical HTML5 progress bar in chrome?
In Mozilla Firefox, it can be done in the following way:
<style>
.vert {
-moz-orient: vertical;
}
</style>
<progress class="vert" style="position: absolute; top: 0px; left: 0px;"
value="10" max="100" id="progressBar">No progress bar</progress>