HTML meter tag

β€” 3 minute read

permalink

Ever needs to showcase a percentage visually? HTML provides us with a super cool meter tag that can be used for this exact purpose.

It looks like this:

HTML Meter tag

HTML Meter attributes permalink

The meter tag in general, works by just typing it as <meter>. However, it comes with some attributes we can leverage.

  • high: What is considered a high value
  • low: What is considered a low value
  • min: Starting point of the meter
  • max: Ending point of the meter
  • value: The current value

Considering this we can create a gauge that is on the low side:

<meter value="1" min="0" max="10" high="8" low="2"></meter>

HTML Low meter

Or we could create a reading that is considered high.

<meter value="9" min="0" max="10" high="8" low="2"></meter>

HTML High meter

Any other value could render in green.

<meter value="5" min="0" max="10" high="8" low="2"></meter>

HTML Meter tag

You can also have a play with the meters on Codepen.

See the Pen HTML meter tag by Chris Bongers (@rebelchris) on CodePen.

Browser support permalink

The meter element is widely adopted. Just IE has some issues rendering it. You can place a fallback inside the meter element in the form of text or an image.

HTML Meter element browser support

Thank you for reading, and let's connect! permalink

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter