blob: 78f28af36fc17160f326551d79ecf96fea94c212 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
---
title: Attribut
slug: Glossary/Attribute
tags:
- Encodage
- Glossaire
- HTML
translation_of: Glossary/Attribute
original_slug: Glossaire/Attribut
---
<p><span class="glossaryLink new">Un <em>attribut</em></span> vient compléter un {{Glossary("tag")}}. Sa présence peut être requise ou facultative. Il peut fournir des méta-informations ou changer le comportement du tag. La syntaxe est <code>name=value</code> où <em>name</em> est l'identificateur de l'attribut et <em>value</em> sa valeur attribuée.</p>
<pre class="brush: html"><!-- Voici un exemple de tag sans attribut -->
<h2>Titre</h2>
<!-- Le même tag avec un attribut -->
<!-- Le titre apparaît désormais sur un fond jaune -->
<h2 style="background-color:yellow";>Titre</h2></pre>
<p>On peut aussi trouver des attributs sans valeur quand elle n'est pas nécessaire.</p>
<pre class="brush: html"><!-- Un tag avec un attribut indiquant que le champ est requis -->
<input type="text" required>
<!-- Cette notation fonctionne aussi -->
<input type="text" required="required"></pre>
<h2 id="Pour_approfondir">Pour approfondir</h2>
<h3 id="Informations_techniques">Informations techniques</h3>
<ul>
<li><a href="https://developer.mozilla.org/fr/docs/Web/HTML/Attributs">Liste des attributs HTML</a></li>
<li>Informations concernant les <a href="https://developer.mozilla.org/fr/docs/Web/HTML/Attributs_universels">attributs universels</a> en HTML.</li>
</ul>
|