From 88dda3c00eefc18a29447e99ebd3177925602b52 Mon Sep 17 00:00:00 2001 From: julieng Date: Mon, 1 Nov 2021 07:51:45 +0100 Subject: convert content to md --- files/fr/web/svg/element/line/index.md | 78 +++++++++++++++++----------------- 1 file changed, 38 insertions(+), 40 deletions(-) (limited to 'files/fr/web/svg/element/line') diff --git a/files/fr/web/svg/element/line/index.md b/files/fr/web/svg/element/line/index.md index d5adf5895e..6df614027e 100644 --- a/files/fr/web/svg/element/line/index.md +++ b/files/fr/web/svg/element/line/index.md @@ -10,62 +10,60 @@ tags: - Élément(2) translation_of: Web/SVG/Element/line --- -
{{SVGRef}}
+{{SVGRef}} -

L'élément line est un élément de la catégorie des formes simples SVG, utilisé pour créer une ligne connectant deux points.

+L'élément `line` est un élément de la catégorie des formes simples SVG, utilisé pour créer une ligne connectant deux points. -

Contexte d'utilisation

+## Contexte d'utilisation -

{{svginfo}}

+{{svginfo}} -

Exemple

+## Exemple - +```css hidden +html,body,svg { height:100% } +``` -
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
-  <line x1="0" y1="80" x2="100" y2="20" stroke="black" />
+```html
+
+  
 
-  <!-- Si on n'indique pas stroke, la ligne de couleur
-       ne sera pas visible -->
-</svg>
+ + +``` -

{{EmbedLiveSample('exemple', 100, 100)}}

+{{EmbedLiveSample('exemple', 100, 100)}} -

Attributs

+## Attributs -

Attributs globaux

+### Attributs globaux - +- [Attributs conditionnels](/fr/docs/Web/SVG/Attribute#Attributs_de_traitement_conditionnel "en/SVG/Attribute#ConditionalProccessing") ; +- [Attributs centraux](/fr/docs/Web/SVG/Attribute#Attributs_de_base "en/SVG/Attribute#Core") ; +- [Attributs d'événements graphiques](/fr/docs/Web/SVG/Attribute#Attributs_d'.C3.A9v.C3.A9nement_graphique "en/SVG/Attribute#GraphicalEvent") ; +- [Attributs de présentation ](/fr/docs/Web/SVG/Attribute#Attributs_de_pr.C3.A9sentation "en/SVG/Attribute#Presentation") ; +- {{ SVGAttr("class") }} ; +- {{ SVGAttr("style") }} ; +- {{ SVGAttr("externalResourcesRequired") }} ; +- {{ SVGAttr("transform") }}. -

Attributs spécifiques

+### Attributs spécifiques - +- {{ SVGAttr("x1") }} +- {{ SVGAttr("x2") }} +- {{ SVGAttr("y1") }} +- {{ SVGAttr("y2") }} -

Interface DOM

+## Interface DOM -

Cet élément implémente l'interface SVGLineElement.

+Cet élément implémente l'interface [`SVGLineElement`](/fr/DOM/SVGLineElement "en/DOM/SVGLineElement"). -

Compatibilité des navigateurs

+## Compatibilité des navigateurs -

{{Compat("svg.elements.line")}}

+{{Compat("svg.elements.line")}} -

Voir aussi

+## Voir aussi - +- {{ SVGElement("polygon") }} ; +- {{ SVGElement("path") }}. -- cgit v1.2.3-54-g00ecf