Dofactory.com
Dofactory.com
Earn income with your HTML skills
Sign up and we'll send you the best freelance opportunities straight to your inbox.
We're building the largest freelancing marketplace for people like you.
By adding your name & email you agree to our terms, privacy and cookie policies.

HTML <meter> low Attribute

The low attribute on a <meter> tag sets the low value of the meter element.

Its value must be between the min and max values.

Example

#

A low attribute on a <meter> element.
The gauge has a specfied high and low values.

Pressure reading

7/10
<div>Pressure reading</div>

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

Using low

The low attribute specifies the value that is considered low for the gauge.

The low value must be between the min and max values.

Similarly, the high value also must be between the min and max values.

How the low and high values are used is application specific. HTML only assigns the values.


Syntax

<meter low="number">

Values

#

Value Description
number A whole or floating point number.

Browser support

Here is when low support started for each browser:

Chrome
8.0 Dec 2010
Firefox
16.0 Oct 2012
IE/Edge
13.0 Nov 2015
Opera
11.5 May 2011
Safari
6.0 Jul 2012

You may also like

 Back to <meter>

Last updated on Sep 30, 2023

Earn income with your HTML skills
Sign up and we'll send you the best freelance opportunities straight to your inbox.
We're building the largest freelancing marketplace for people like you.
By adding your name & email you agree to our terms, privacy and cookie policies.

Guides