Ultimele tutoriale de dezvoltare web
 

HTML <input> alt Attribute

<HTML <input> tag

Exemplu

Un formular HTML cu o imagine care reprezinta butonul de trimitere:

<form action="demo_form.asp">
  First name: <input type="text" name="fname"><br>
  <input type="image" src="submit.gif" alt="Submit" width="48" height="48">
</form>
Încearcă - l singur »

Definiție și utilizare

alt atribut un text alternativ pentru utilizator, în cazul în care el / ea pentru un motiv oarecare nu se poate vizualiza imaginea (because of slow connection, an error in the src attribute, or if the user uses a screen reader) din (because of slow connection, an error in the src attribute, or if the user uses a screen reader) în (because of slow connection, an error in the src attribute, or if the user uses a screen reader) care (because of slow connection, an error in the src attribute, or if the user uses a screen reader) de (because of slow connection, an error in the src attribute, or if the user uses a screen reader) .

Note: alt atribut poate fi utilizat numai cu <input type="image"> .


Suport pentru browser-

Atribut
alt da da da da da

Diferențe între HTML 4.01 și HTML5

NICI UNUL.


Sintaxă

<input alt=" Valorile atributelor
Valoare Descriere
text Specifică un text alternativ pentru imagine

<HTML <input> tag