Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML แอตทริบิวต์ที่เหมาะสมที่สุด


แอตทริบิวต์ HTML ที่เหมาะสมที่สุดจะกำหนดช่วงที่ค่าของมาตรวัดถือเป็นค่าที่เหมาะสมที่สุดในเอกสาร HTML ใช้ได้กับ มิเตอร์ . เท่านั้น องค์ประกอบ HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

<meter optimum=”number”></meter>

ให้เราดูตัวอย่าง HTML แอตทริบิวต์ที่เหมาะสมที่สุด -

ตัวอย่าง

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #8BC6EC;
      background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
      text-align: center;
   }
</style>
<body>
<h1>HTML optimum Attribute Demo</h1>
<p>Download:</p>
<meter min="0" max="100" low="10" high="90" value="50" optimum="30"></meter>
</body>
</html>

ผลลัพธ์

HTML แอตทริบิวต์ที่เหมาะสมที่สุด