blob: 5c451814d6007303134fc2ea0d2a0cd877abcbec (
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
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
|
---
title: tab-size
slug: Web/CSS/tab-size
tags:
- CSS
- Experimental
- Propriété
- Reference
translation_of: Web/CSS/tab-size
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>
<p>La propriété<strong> <code>tab-size</code></strong> permet d'adapter la largeur utilisée pour représenter le caractère de tabulation (<code>U+0009</code>).</p>
<pre class="brush:css no-line-numbers">/* Valeurs entières */
/* Type <integer> */
tab-size: 4;
tab-size: 0;
/* Valeurs de longueurs */
/* Type <length> */
tab-size: 10px;
tab-size: 2em;
/* Valeurs globales */
tab-size: inherit;
tab-size: initial;
tab-size: unset;
</pre>
<p>{{cssinfo}}</p>
<h2 id="Syntaxe">Syntaxe</h2>
<h3 id="Valeurs">Valeurs</h3>
<dl>
<dt>{{cssxref("<integer>")}}</dt>
<dd>Le nombre d'espaces qu'occupe une tabulation. La valeur doit être positive.</dd>
<dt>{{cssxref("<length>")}}</dt>
<dd>La largeur de la tabulation. La valeur doit être positive.</dd>
</dl>
<h3 id="Syntaxe_formelle">Syntaxe formelle</h3>
{{csssyntax}}
<h2 id="Exemples">Exemples</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><pre class="exemple">
print "tabulation avant"
print "4 espaces avant"
print "2 espaces avant"
</pre></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">.exemple {
tab-size: 5;
}
</pre>
<h3 id="Résultat">Résultat</h3>
<p>{{EmbedLiveSample("Exemples","100%","100%")}}</p>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">État</th>
<th scope="col">Commentaires</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS3 Text', '#tab-size-property', 'tab-size')}}</td>
<td>{{Spec2('CSS3 Text')}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<div class="hidden">Ce tableau de compatibilité a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à envoyer une <em>pull request</em> sur <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>.</div>
<p>{{Compat("css.properties.tab-size")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li><a class="external" href="http://lists.w3.org/Archives/Public/www-style/2008Dec/0009.html"><cite>Contrôler la taille du caractère de tabulation (U+0009)</cite></a>, un e-mail d'Anne van Kesteren pour le CSSWG afin de proposer la standardisation de cette propriété (en anglais).</li>
</ul>
|