diff options
author | julieng <julien.gattelier@gmail.com> | 2021-09-17 20:59:20 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-12 07:57:33 +0200 |
commit | 258ba7b4be62d8640477a3bd3146d08b00cb70ec (patch) | |
tree | a8476eee4c369ff47bdfe08353774414f2281ba3 /files/fr/web/css/tab-size/index.md | |
parent | 149319bb8c7b1394a443f0877c3460cd362aa815 (diff) | |
download | translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.tar.gz translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.tar.bz2 translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.zip |
convert content to md
Diffstat (limited to 'files/fr/web/css/tab-size/index.md')
-rw-r--r-- | files/fr/web/css/tab-size/index.md | 83 |
1 files changed, 35 insertions, 48 deletions
diff --git a/files/fr/web/css/tab-size/index.md b/files/fr/web/css/tab-size/index.md index bb78bd950c..78a7cfb132 100644 --- a/files/fr/web/css/tab-size/index.md +++ b/files/fr/web/css/tab-size/index.md @@ -8,17 +8,18 @@ tags: - Reference translation_of: Web/CSS/tab-size --- -<div>{{CSSRef}}{{SeeCompatTable}}</div> +{{CSSRef}}{{SeeCompatTable}} -<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> +La propriété** `tab-size`** permet d'adapter la largeur utilisée pour représenter le caractère de tabulation (`U+0009`). -<pre class="brush:css no-line-numbers">/* Valeurs entières */ -/* Type <integer> */ +```css +/* Valeurs entières */ +/* Type <integer> */ tab-size: 4; tab-size: 0; /* Valeurs de longueurs */ -/* Type <length> */ +/* Type <length> */ tab-size: 10px; tab-size: 2em; @@ -26,71 +27,57 @@ tab-size: 2em; tab-size: inherit; tab-size: initial; tab-size: unset; -</pre> +``` -<p>{{cssinfo}}</p> +{{cssinfo}} -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<h3 id="Valeurs">Valeurs</h3> +### Valeurs -<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> +- {{cssxref("<integer>")}} + - : Le nombre d'espaces qu'occupe une tabulation. La valeur doit être positive. +- {{cssxref("<length>")}} + - : La largeur de la tabulation. La valeur doit être positive. -<h3 id="Syntaxe_formelle">Syntaxe formelle</h3> +### Syntaxe formelle {{csssyntax}} -<h2 id="Exemples">Exemples</h2> +## Exemples -<h3 id="HTML">HTML</h3> +### HTML -<pre class="brush: html"><pre class="exemple"> +```html +<pre class="exemple"> print "tabulation avant" print "4 espaces avant" print "2 espaces avant" -</pre></pre> +</pre> +``` -<h3 id="CSS">CSS</h3> +### CSS -<pre class="brush: css">.exemple { +```css +.exemple { tab-size: 5; } -</pre> +``` -<h3 id="Résultat">Résultat</h3> +### Résultat -<p>{{EmbedLiveSample("Exemples","100%","100%")}}</p> +{{EmbedLiveSample("Exemples","100%","100%")}} -<h2 id="Spécifications">Spécifications</h2> +## Spécifications -<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> +| Spécification | État | Commentaires | +| -------------------------------------------------------------------------------- | ---------------------------- | -------------------- | +| {{SpecName('CSS3 Text', '#tab-size-property', 'tab-size')}} | {{Spec2('CSS3 Text')}} | Définition initiale. | -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("css.properties.tab-size")}}</p> +{{Compat("css.properties.tab-size")}} -<h2 id="Voir_aussi">Voir aussi</h2> +## Voir aussi -<ul> - <li><a href="http://lists.w3.org/Archives/Public/www-style/2008Dec/0009.html">Contrôler la taille du caractère de tabulation (U+0009)</a>, un e-mail d'Anne van Kesteren pour le CSSWG afin de proposer la standardisation de cette propriété (en anglais).</li> -</ul> +- [Contrôler la taille du caractère de tabulation (U+0009)](http://lists.w3.org/Archives/Public/www-style/2008Dec/0009.html), un e-mail d'Anne van Kesteren pour le CSSWG afin de proposer la standardisation de cette propriété (en anglais). |