diff options
Diffstat (limited to 'files/fr/web/css/page-break-inside/index.md')
-rw-r--r-- | files/fr/web/css/page-break-inside/index.md | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/files/fr/web/css/page-break-inside/index.md b/files/fr/web/css/page-break-inside/index.md new file mode 100644 index 0000000000..3dc045c5ee --- /dev/null +++ b/files/fr/web/css/page-break-inside/index.md @@ -0,0 +1,162 @@ +--- +title: page-break-inside +slug: Web/CSS/page-break-inside +tags: + - CSS + - Propriété + - Reference +translation_of: Web/CSS/page-break-inside +--- +<div>{{CSSRef}}</div> + +<div class="warning"> +<p><strong>Attention :</strong> Cette propriété a été remplacée par la propriété {{cssxref("break-inside")}}.</p> +</div> + +<p>La propriété <strong><code>page-break-inside</code></strong> ajuste la façon dont sont appliqués les sauts de page au sein de l'élément courant.</p> + +<pre class="brush:css no-line-numbers">/* Valeurs avec un mot-clé */ +page-break-inside: auto; +page-break-inside: avoid; + +/* Valeurs globales */ +page-break-inside: inherit; +page-break-inside: initial; +page-break-inside: unset; +</pre> + +<h2 id="Syntaxe">Syntaxe</h2> + +<h3 id="Valeurs">Valeurs</h3> + +<dl> + <dt><code>auto</code></dt> + <dd>Valeur initiale. Les sauts de page sont automatiques (ni forcés, ni interdits).</dd> + <dt><code>avoid</code></dt> + <dd>L'agent utilisateur évite d'insérer un saut de page au sein de l'élément.</dd> +</dl> + +<h3 id="Syntaxe_formelle">Syntaxe formelle</h3> + +{{csssyntax}} + +<h2 id="Alias_avec_break-inside">Alias avec <code>break-inside</code></h2> + +<p>La propriété <code>page-break-inside</code> a désormais été remplacée par la propriété {{cssxref("break-inside")}}.</p> + +<p>Pour des raisons de compatibilité, <code>page-break-inside</code> devrait être considérée par les navigateurs comme synonyme de <code>break-inside</code>. De cette façon, les sites utilisant <code>page-break-inside</code> pourront continuer de fonctionner. Voici un sous-ensemble des valeurs de cette propriété et des correspondances</p> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col"><code>page-break-inside</code></th> + <th scope="col"><code>break-inside</code></th> + </tr> + </thead> + <tbody> + <tr> + <td><code>auto</code></td> + <td><code>auto</code></td> + </tr> + <tr> + <td><code>avoid</code></td> + <td><code>avoid</code></td> + </tr> + </tbody> +</table> + +<h2 id="Exemples">Exemples</h2> + +<h3 id="HTML">HTML</h3> + +<pre class="brush: html"><div class="page"> + <p>Un premier paragraphe.</p> + <section class="list"> + <span>Une liste</span> + <ol> + <li>Un</li> +<!-- <li>Deux</li> --> + </ol> + </section> + <ul> + <li>Un</li> +<!-- <li>Deux</li> --> + </ul> + <p>Un deuxième paragraphe.</p> + <p>Un troisième paragraphe, un peu plus long.</p> + <p>Un quatrième paragraphe, un peu plus long voire plus long que le troisième.</p> +</div></pre> + +<h3 id="CSS">CSS</h3> + +<pre class="brush: css">.page { + background-color: #8cffa0; + height: 90px; + width: 200px; + columns: 1; + column-width: 100px; +} + +.list, ol, ul, p { + break-inside: avoid; +} + +p { + background-color: #8ca0ff; +} + +ol, ul, .list { + margin: 0.5em 0; + display: block; + background-color: orange; +} + +p:first-child { + margin-top: 0; +}</pre> + +<h3 id="Résultat">Résultat</h3> + +<p>{{EmbedLiveSample("Exemples", 400, 160)}}</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 Paged Media', '#page-break-inside', 'page-break-inside')}}</td> + <td>{{Spec2('CSS3 Paged Media')}}</td> + <td>Permet d'appliquer cette propriété sur plus d'éléments.</td> + </tr> + <tr> + <td>{{SpecName('CSS2.1', 'page.html#propdef-page-break-inside', 'page-break-inside')}}</td> + <td>{{Spec2('CSS2.1')}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<p>{{cssinfo}}</p> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{Compat("css.properties.page-break-inside")}}</p> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>{{cssxref("break-before")}}</li> + <li>{{cssxref("break-after")}}</li> + <li>{{cssxref("break-inside")}}</li> + <li>{{cssxref("page-break-after")}}</li> + <li>{{cssxref("page-break-before")}}</li> + <li>{{cssxref("orphans")}}</li> + <li>{{cssxref("widows")}}</li> +</ul> |