Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
March 15, 2021 09:12 am GMT

HTML meter tag

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

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.

Browser support

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!

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


Original Link: https://dev.to/dailydevtips1/html-meter-tag-1o1m

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To