Normally, if I create:
<meter value="30" max="100">Low</meter>
I’ll end up with a horizontal meter/bar if viewed on a browser that supports the html5 meter element.
Is it possible to create a vertical meter with html5?
The only solution I’ve been able to come up with so far is using CSS3 rotation (transform).
Transform is the answer. The whole point of meter is that it’s a semantic, not a presentational element and you should be able to style it however you want with CSS>