diff options
Diffstat (limited to 'files/fr/web/svg/attribute/clip-path/index.html')
-rw-r--r-- | files/fr/web/svg/attribute/clip-path/index.html | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/files/fr/web/svg/attribute/clip-path/index.html b/files/fr/web/svg/attribute/clip-path/index.html index a3ac7eba52..7aceae680c 100644 --- a/files/fr/web/svg/attribute/clip-path/index.html +++ b/files/fr/web/svg/attribute/clip-path/index.html @@ -10,14 +10,15 @@ translation_of: Web/SVG/Attribute/clip-path <p>L'attribut <strong><code>clip-path</code></strong> permet d'appliquer un détourage à un élément.</p> -<p class="note"><strong>Note:</strong> <code>clip-path</code> étant un attribut de présentation, il peut être utilisé comme propriété CSS.</p> +<div class="note"> + <p><strong>Note :</strong> <code>clip-path</code> étant un attribut de présentation, il peut être utilisé comme propriété CSS.</p> +</div> <p>Cet attribut peut être appliqué sur tous les éléments, en revanche il n'aura d'effet que sur les éléments suivants: {{SVGElement('a')}}, {{SVGElement('circle')}}, {{SVGElement('clipPath')}}, {{SVGElement('ellipse')}}, {{SVGElement('g')}}, {{SVGElement('glyph')}}, {{SVGElement('image')}}, {{SVGElement('line')}}, {{SVGElement('marker')}}, {{SVGElement('mask')}}, {{SVGElement('path')}}, {{SVGElement('pattern')}}, {{SVGElement('polygon')}}, {{SVGElement('polyline')}}, {{SVGElement('rect')}}, {{SVGElement('svg')}}, {{SVGElement('symbol')}}, {{SVGElement('text')}}, {{SVGElement('use')}}</p> -<div id="topExample"> -<div class="hidden"> -<pre class="brush: css">html,body,svg { height:100% }</pre> -</div> +<h2>Exemple</h2> + +<pre class="brush: css hidden">html,body,svg { height:100% }</pre> <pre class="brush: html"><svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"> <clipPath id="myClip" clipPathUnits="objectBoundingBox"> @@ -43,8 +44,7 @@ translation_of: Web/SVG/Attribute/clip-path clip-path="circle() view-box" /> </svg></pre> -<p>{{EmbedLiveSample('topExample', '100%', 200)}}</p> -</div> +<p>{{EmbedLiveSample('exemple', '100%', 200)}}</p> <h2 id="Notes_d'usage">Notes d'usage</h2> @@ -70,9 +70,11 @@ translation_of: Web/SVG/Attribute/clip-path <dd>une information supplémentaire pour dire comment une {{cssxref('basic-shape', 'forme CSS')}} est appliquée à un élément: <code>fill-box</code> indique d'utiliser la zone de sélection de l'objet ; <code>stroke-box</code> d'utiliser la zone de sélection de l'objet en prenant en plus le contour de l'élément; <code>view-box</code> d'utiliser le document SVG parent.</dd> </dl> -<p class="note"><strong>Note:</strong> Pour plus d'informations sur la syntaxe de clip-path, voir la propriété CSS {{cssxref('clip-path')}}.</p> +<div class="note"> + <p><strong>Note:</strong> Pour plus d'informations sur la syntaxe de clip-path, voir la propriété CSS {{cssxref('clip-path')}}.</p> +</div> -<h2 id="Browser_Compatibility" name="Browser_Compatibility">Compatibilité des navigateurs</h2> +<h2>Compatibilité des navigateurs</h2> <p>{{Compat("svg.attributes.presentation.clip-path")}}</p> |