Advertisement
Home Open Editor ❯

HTML high Attribute

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>

Try this code ❯

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>


Applies to:

The high attribute can be used on the following element:

Element Attribute
<meter> high

Advertisement

Attribute Values

Value Description
number A floating point number that is considered to be a high value.
Home Open Editor ❯
Advertisement