Gli ultimi tutorial di sviluppo web
 

HTML max Attribute


Definizione e utilizzo

Il max attributo specifica il valore massimo dell'elemento.

Quando viene utilizzato dal <progress> elemento, il max attributo specifica quanto lavoro il compito richiede in totale.


Si applica a

La max attributo può essere utilizzato sui seguenti elementi:

Elementi Attributo
<input> max
<meter> max
<progress> max

Esempi

Input Esempio

L'uso del min e max attributi:

<form action="demo_form.asp">

  Enter a date before 1980-01-01:
  <input type="date" name="bday" max="1979-12-31">

  Enter a date after 2000-01-01:
  <input type="date" name="bday" min="2000-01-02">

  Quantity (between 1 and 5):
  <input type="number" name="quantity" min="1" max="5">

  <input type="submit">

</form>
Prova tu stesso "

Meter Esempio

Un calibro con un valore di corrente e min, max, high e low segmenti:

<meter min="0" low="40" high="90" max="100" value="95"></meter>
Prova tu stesso "

Progress Esempio

Il download in corso:

<progress value="22" max="100"></progress>
Prova tu stesso "

Supporto per il browser

Il max attributo ha la seguente supporto del browser per ogni elemento:

Elemento
input 5.0 10.0 16,0 5.1 10.6
meter 8.0 Non supportato 6.0 6.0 11.0
progress 8.0 10.0 16,0 6.0 11.0