diff options
Diffstat (limited to 'files/fr/web/svg/attribute/stroke/index.html')
-rw-r--r-- | files/fr/web/svg/attribute/stroke/index.html | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/files/fr/web/svg/attribute/stroke/index.html b/files/fr/web/svg/attribute/stroke/index.html index d9e92d5a03..01e3b44595 100644 --- a/files/fr/web/svg/attribute/stroke/index.html +++ b/files/fr/web/svg/attribute/stroke/index.html @@ -10,14 +10,15 @@ translation_of: Web/SVG/Attribute/stroke <p>L'attribut <strong><code>stroke</code></strong> définit la couleur (ou n'importe quelle méthode de remplissage, comme un gradient ou motif) a utiliser pour dessiner le contour d'une forme SVG.</p> -<p class="note"><strong>Note:</strong> <code>stroke</code> étant un attribut de présentation, il peut être utilisé comme propriété CSS.</p> +<div class="note"> + <p><strong>Note :</strong> <code>stroke</code> étant un attribut de présentation, il peut être utilisé comme propriété CSS.</p> +</div> <p>Cet attribut peut être appliqué à tout élément, en revanche il n'aura d'effet que sur les éléments suivants: {{SVGElement('altGlyph')}}, {{SVGElement('circle')}}, {{SVGElement('ellipse')}}, {{SVGElement('path')}}, {{SVGElement('polygon')}}, {{SVGElement('polyline')}}, {{SVGElement('rect')}}, {{SVGElement('text')}}, {{SVGElement('textPath')}}, {{SVGElement('tref')}}, and {{SVGElement('tspan')}}</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 10" xmlns="http://www.w3.org/2000/svg"> @@ -37,8 +38,7 @@ translation_of: Web/SVG/Attribute/stroke </svg> </pre> -<p>{{EmbedLiveSample('topExample', '100%', 200)}}</p> -</div> +<p>{{EmbedLiveSample('exemple', '100%', 200)}}</p> <h2 id="Notes_d'usage">Notes d'usage</h2> @@ -74,7 +74,7 @@ translation_of: Web/SVG/Attribute/stroke <td>{{SpecName("SVG2", "painting.html#StrokeProperty", "stroke")}}</td> <td>{{Spec2("SVG2")}}</td> <td>Définition pour les formes et le texte.<br> - Ajoute <code style="white-space: nowrap;">context-fill</code> et <code style="white-space: nowrap;">context-stroke</code>.</td> + Ajoute <code>context-fill</code> et <code>context-stroke</code>.</td> </tr> <tr> <td>{{SpecName("SVG1.1", "painting.html#StrokeProperty", "stroke")}}</td> @@ -84,8 +84,10 @@ translation_of: Web/SVG/Attribute/stroke </tbody> </table> -<h2 id="Browser_Compatibility" name="Browser_Compatibility">Compatibilité des navigateurs</h2> +<h2 id="Browser_Compatibility">Compatibilité des navigateurs</h2> <p>{{Compat("svg.attributes.presentation.stroke")}}</p> -<p class="note"><strong>Note:</strong> Pour plus d'informations sur les valeurs de <code style="white-space: nowrap;">context-stroke</code> (et <code style="white-space: nowrap;">context-fill</code>) à partir de documents HTML, voir la documentation pour la propriété non-standard <span style="white-space: nowrap;">{{cssxref("-moz-context-properties")}}</span>.</p> +<div class="note"> + <p><strong>Note :</strong> Pour plus d'informations sur les valeurs de <code>context-stroke</code> (et <code>context-fill</code>) à partir de documents HTML, voir la documentation pour la propriété non-standard {{cssxref("-moz-context-properties")}}.</p> +</div> |