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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
---
title: text-indent
slug: Web/CSS/text-indent
tags:
- CSS
- Propriété
- Reference
translation_of: Web/CSS/text-indent
---
{{CSSRef}}
La propriété **`text-indent`** définit la longueur qui doit être laissée avant le début de la première ligne d'un élément contenant du texte.
L'espacement horizontal se fait en accord avec la bord gauche (ou droit pour les dispositions de droite à gauche) de l'élément contenant le texte. Par défaut, cela ne contrôle que l'indentation de la première ligne du bloc mais les mots-clés `hanging` et `each-line` peuvent être utilisés pour modifier ce comportement.
{{EmbedInteractiveExample("pages/css/text-indent.html")}}
## Syntaxe
```css
/* Valeurs de longueur */
/* Type <length> */
text-indent: 3mm;
text-indent: 40px;
/* Valeurs de pourcentages */
/* relatives à la largeur */
/* du bloc englobant */
/* Type <percentage> */
text-indent: 15%;
/* Valeurs avec un mot-clé */
text-indent: 5em each-line;
text-indent: 5em hanging;
text-indent: 5em hanging each-line;
/* Valeurs globales */
text-indent: inherit;
text-indent: initial;
text-indent: unset;
```
### Valeurs
- `<length>`
- : L'indentation est définie de façon absolue avec une longueur ({{cssxref("<length>")}}). On peut utiliser des valeurs négatives. Voir la page sur {{cssxref("<length>")}} pour les différentes unités possibles.
- `<percentage>`
- : L'indentation est définie en proportion de la largeur du bloc englobant (type {{cssxref("<percentage>")}}).
- `each-line` {{experimental_inline}}
- : L'indentation n'affecte que la première ligne du bloc et chaque ligne située après un saut de ligne forcé. Cela n'affecte pas les lignes situées après un retour à la ligne automatique (_wrap_).
- `hanging` {{experimental_inline}}
- : Inverse les lignes indentées. Toutes les lignes, sauf la première, seront indentées.
### Syntaxe formelle
{{csssyntax}}
## Exemples
### Indentation simple
#### HTML
```html
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy
nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy
nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>
```
#### CSS
```css
p {
text-indent: 5em;
background: powderblue;
}
```
### Résultat
{{EmbedLiveSample('Indentation_simple','100%','100%') }}
### Indentation proportionnelle
#### HTML
```html
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy
nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy
nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>
```
#### CSS
```css
p {
text-indent: 30%;
background: plum;
}
```
#### Résultat
{{EmbedLiveSample('Indentation_proportionnelle','100%','100%')}}
## Spécifications
| Spécification | État | Commentaires |
| ---------------------------------------------------------------------------------------- | ---------------------------------------- | ------------------------------------------------------------------------------------------------- |
| {{SpecName('CSS3 Text', '#text-indent-property', 'text-indent')}} | {{Spec2('CSS3 Text')}} | Ajout des mots-clés `hanging` et `each-line`. |
| {{SpecName('CSS3 Transitions', '#animatable-css', 'text-indent')}} | {{Spec2('CSS3 Transitions')}} | `text-indent` peut être animée. |
| {{SpecName('CSS2.1', 'text.html#indentation-prop', 'text-indent')}} | {{Spec2('CSS2.1')}} | The behavior with `display: inline-block` and anonymous block boxes have been explicitly defined. |
| {{SpecName('CSS1', '#text-indent', 'text-indent')}} | {{Spec2('CSS1')}} | Définition initiale. |
{{cssinfo}}
## Compatibilité des navigateurs
{{Compat("css.properties.text-indent")}}
|