HTML의 min 속성은 요소의 최소값을 설정하는 데 사용됩니다.
예시
먼저
<!DOCTYPE html> <html> <body> <h2>Water Levels</h2> <p>Impurity Level <meter min="0" low="50" high="95" max="100" value="85"></meter></p> <p>TDS Level <meter min="0" low="20" high="80" max="100" value="60"></meter></p> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
예시
이제 요소 −
에서 min 속성의 예를 볼 것입니다.<!DOCTYPE html> <html> <body> <h2>Player Details with Reporting Time</h2> <form> <p>These are the <ins>details with <ins>reporting date</ins>:</p> <fieldset> <legend>New Details:</legend> Cricketer: <input type="text"><br> Rank: <input type="number"><br> Email: <input type="email"><br> Reporting Date:<input type="date" name="reporting" min="2019-05-05"> </fieldset> </form> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
이제 2018-05-05 이전 날짜를 추가하려고 하면 다음이 표시됩니다. -