min
(attributo base HTML) stabilisce, ove applicabile, il valore minimo ammesso nei tag HTML <input>
(con attributo type
di valore date
, number
o range
) e <meter>
.
tag |
valore |
---|---|
|
|
|
Esempio
<input type="date" min="2016-12-31"> <input type="number" min="100"> <meter min="50" max="100" value="70"></meter>
0 Comment