<meter>: The HTML Meter element #
::: section-content
The <meter>
HTML element represents either a scalar value
within a known range or a fractional value.
:::
Try it #
::: section-content ::: iframe ::: {.output-header .border-rounded-top}
HTML Demo: <meter> #
Reset :::
::: {#warning-no-script .warning-container} ::: warning The interactive example cannot be shown because JavaScript is disabled. ::: :::
::: {#warning-mathml-not-supported .warning-container .hidden} ::: warning The interactive example cannot be shown because MathML is not supported by your browser. ::: :::
::: {#editor-container .editor-container .tabbed-shorter .hidden .border-rounded-bottom editor-type=“tabbed”} ::: {#tab-container .section .tabs} ::: {#tablist .tab-list role=“tablist”} HTML
CSS
JavaScript :::
::: {#html-panel .section .hidden tabindex=“0” role=“tabpanel” aria-labelledby=“html” aria-hidden=“true”} ::: {#html-editor}
<meter id="fuel" min="0" max="100" low="33" high="66" optimum="80" value="50">at 50/100</meter>
::: :::
::: {#css-panel .section .hidden tabindex=“0” role=“tabpanel” aria-labelledby=“css” aria-hidden=“true”} ::: {#css-editor} label { padding-right: 10px; font-size: 1rem; } ::: :::
::: {#js-panel .section .hidden tabindex=“0” role=“tabpanel” aria-labelledby=“js” aria-hidden=“true”} ::: {#js-editor} ::: ::: :::
::: {#output .output-container}
Output #
::: :::
::: {.section .console-container .hidden aria-hidden=“true”}
Console Output #
![] clear console
::: {#console .console} ::: :::
::: {#html-output .output .editor-tabbed} %html-content% ::: :::
Content categories | Flow content, phrasing content, labelable content, palpable content. |
---|---|
Permitted content | Phrasing
content, but there must be no <meter> element
among its descendants. |
Tag omission | None, both the starting and ending tag are mandatory. |
Permitted parents | Any element that accepts phrasing content. |
Implicit ARIA role | meter |
Permitted ARIA roles | No role permitted |
DOM interface | HTMLMeterElement |
Attributes #
::: section-content This element includes the global attributes.
value
The current numeric value. This must be between the minimum and maximum values (
min
attribute andmax
attribute) if they are specified. If unspecified or malformed, the value is0
. If specified, but not within the range given by themin
attribute andmax
attribute, the value is equal to the nearest end of the range.::: {#sect1 .notecard .note} Note: Unless the
value
attribute is between0
and1
(inclusive), themin
andmax
attributes should define the range so that thevalue
attribute's value is within it. :::min
The lower numeric bound of the measured range. This must be less than the maximum value (
max
attribute), if specified. If unspecified, the minimum value is0
.max
The upper numeric bound of the measured range. This must be greater than the minimum value (
min
attribute), if specified. If unspecified, the maximum value is1
.low
The upper numeric bound of the low end of the measured range. This must be greater than the minimum value (
min
attribute), and it also must be less than the high value and maximum value (high
attribute andmax
attribute, respectively), if any are specified. If unspecified, or if less than the minimum value, thelow
value is equal to the minimum value.high
The lower numeric bound of the high end of the measured range. This must be less than the maximum value (
max
attribute), and it also must be greater than the low value and minimum value (low
attribute andmin
attribute, respectively), if any are specified. If unspecified, or if greater than the maximum value, thehigh
value is equal to the maximum value.optimum
This attribute indicates the optimal numeric value. It must be within the range (as defined by the
min
attribute andmax
attribute). When used with thelow
attribute andhigh
attribute, it gives an indication where along the range is considered preferable. For example, if it is between themin
attribute and thelow
attribute, then the lower range is considered preferred. The browser may color the meter's bar differently depending on whether the value is less than or equal to the optimum value.form
This optional attribute is used to explicitly set a
<form>
owner for the<meter>
element. If omitted, the<meter>
is associated with its ancestor<form>
element or the form association set by theform
attribute on another ancestor element, such as on a<fieldset>
, if any. If included, the value must be theid
of a<form>
in the same tree. :::
Examples #
Simple example #
::: section-content
HTML #
::: code-example [html]{.language-name}
<p>
Heat the oven to <meter min="200" max="500" value="350">350 degrees</meter>.
</p>
:::
Result #
::: {#sect2 .code-example} ::: iframe ::: :::
On Google Chrome, the resulting meter looks like this:
{width=“504” height=“74” loading=“lazy”} :::
High and Low range example #
::: section-content
Note that in this example the
min
attribute is omitted. This
is allowed, as it will default to 0
.
HTML #
::: code-example [html]{.language-name}
<p>
He got a <meter low="69" high="80" max="100" value="84">B</meter> on the exam.
</p>
:::
Result #
::: {#sect3 .code-example} ::: iframe ::: :::
On Google Chrome, the resulting meter looks like this:
{width=“498” height=“70” loading=“lazy”} :::
Specifications #
::: _table #
Specification #
HTML Standard
[#
the-meter-element]{.small}
:::
Browser compatibility #
::: _table Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
meter
6 ≤18 16 No 11 6 No 18 16 11 10.3 1.0
form
6 ≤18 16 No 11 6 No 18 16 11 10.3 1.0
high
6 ≤18 16 No 11 6 No 18 16 11 10.3 1.0
low
6 ≤18 16 No 11 6 No 18 16 11 10.3 1.0
max
6 ≤18 16 No 11 6 No 18 16 11 10.3 1.0
min
6 ≤18 16 No 11 6 No 18 16 11 10.3 1.0
optimum
6 ≤18 16 No 11 6 No 18 16 11 10.3 1.0
value
6 ≤18 16 No 11 6 No 18 16 11 10.3 1.0
:::
See also #
::: section-content
<progress>
:::
::: _attribution
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5
or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter{._attribution-link}
:::