HTML high Attribute

❮ HTML Attributes

Example

<p><label for="a">A score:</label>
<meter id="a" min="0" low="40" high="90" max="100" value="60"></meter></p>

<p><label for="b">B score:</label>
<meter id="b" min="0" low="40" high="90" max="100" value="85"></meter></p>

Meaning

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 and min attribute, respectively), if any are specified.

Note: If unspecified, or if greater than the maximum value, the high value is equal to the maximum value.




Standard Syntax

<meter value="number" high="number">...</meter>



Browser Support




Status




Applies to:

The high attribute can be used on the following element:

Element Attribute
<meter> high






Attribute Values

Value Description
number A floating point number that is considered to be a high value.
❮ HTML Attributes