Los últimos tutoriales de desarrollo web
 

SVG <Line>


SVG Línea - <line>

La <line> elemento se utiliza para crear una línea:

style = "accidente cerebrovascular: rgb (255,0,0); ictus-width: 2" /> Lo sentimos, su navegador no soporta SVG en línea.

Aquí está el código SVG:

Ejemplo

<svg height="210" width="500">
  <line x1="0" y1="0" x2="200" y2="200" style="stroke:rgb(255,0,0);stroke-width:2" />
</svg>
Inténtalo tú mismo "

Code explanation:

  • El x1 atributo define el inicio de la línea en el eje x
  • El y1 atributo define el inicio de la línea en el eje y
  • El x2 atributo define el final de la línea en el eje x
  • El y2 atributo define el final de la línea en el eje y