HTML low 속성은 HTML 문서에서 게이지의 값이 낮은 값으로 간주되는 범위를 정의합니다. 미터 에만 적용할 수 있습니다. HTML 요소.
구문
다음은 구문입니다 -
<meter low=”number”></meter>
HTML low Attribute의 예를 살펴보겠습니다 -
예시
<!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 low Attribute Demo</h1>
<p>Download:</p>
<meter min="0" max="100" low="10" high="90" value="50"></meter>
</body>
</html> 출력
