Tutorials References Menu

HTML <meter> high Attribute

❮ HTML <meter> tag

Example

A gauge with a current value and min, max, high, and low segments:

<p><label for="anna">Anna's score:</label>
<meter id="anna" min="0" low="40" high="90" max="100" value="95"></meter></p>

<p><label for="peter">Peter's score:</label>
<meter id="peter" min="0" low="40" high="90" max="100" value="65"></meter></p>

<p><label for="linda">Linda's score:</label>
<meter id="linda" min="0" low="40" high="90" max="100" value="35"></meter></p>
Try it Yourself »

Definition and Usage

The high attribute specifies the range where the gauge's value is considered to be a high value.

The high attribute value must be less than the max attribute value, and it also must be greater than the low and min attribute values.


Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Attribute
high 8.0 13.0 16.0 6.0 11.5

Syntax

<meter high="number">

Attribute Values

Value Description
number Specifies a floating point number that is considered to be a high value

❮ HTML <meter> tag