Home  >  Article  >  Web Front-end  >  How to set the range considered as high value in HTML?

How to set the range considered as high value in HTML?

PHPz
PHPzforward
2023-08-31 08:17:06996browse

How to set the range considered as high value in HTML?

Use the high attribute in HTML to set the range of values ​​that are considered high.

Example

You can try running the following code to achieve highproperty−

<!DOCTYPE html>
<html>
   <body>
      <p>
         Water Level:
         <meter min = "0" low = "40" high = "100" max = "100" value = "75"></meter>
      </p>
   </body>
</html>

The above is the detailed content of How to set the range considered as high value in HTML?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete