How to create a vertical html5 progress graph in Google Chrome
Is it possible to make a vertical HTML5 progress bar in Google Chrome?
In Mozilla Firefox, this can be done as follows:
<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>
+3
source to share