Horje
HTML low Attribute

Definition and Usage

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

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


Applies to

The low attribute can be used on the following element:

Element Attribute
<meter> low

Browser Support

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


How to add A gauge with a current value and min, max, high, and low segments - HTML low Attribute

The high attribute specifies the range where the gauge's value is considered to be a high value. The low attribute specifies the range where the gauge's value is considered to be a low value. The max attribute specifies the upper bound of the gauge. The min attribute specifies the lower bound of the gauge. The value attribute specifies the current value of the gauge.
index.html
Example: HTML
 <meter min="0" low="40" high="90" max="100" value="95"></meter> 

Output should be:

How to add A gauge with a current value and min, max, high, and low segments - HTML low Attribute




html low attribute

Type:
Develop
Category:
Web Tutorial
Sub Category:
HTML Attribute
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference