A gauge with a current value and min, max, high, and low segments.
The required value
attribute specifies the current, or "measured", value of the gauge.
The value attribute must be between the min
and max
attribute values.
The numbers in the table specify the first browser version that fully supports the attribute.
<meter value="number">
Value | Description |
---|---|
number | Required. Specifies a floating point number that is the current value of the gauge |
Example:
HTML
<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>
Type: | Html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |