Los últimos tutoriales de desarrollo web
 

SVG <Texto>


Texto SVG - <text>

La <text> elemento se utiliza para definir un texto.


Ejemplo 1

Escribir un texto:

Me encanta SVG! Lo sentimos, su navegador no soporta SVG en línea.

Aquí está el código SVG:

Ejemplo

<svg height="30" width="200">
  <text x="0" y="15" fill="red">I love SVG!</text>
</svg>
Inténtalo tú mismo "

Ejemplo 2

Girar el texto:

Lo sentimos, su navegador no soporta SVG en línea.

Aquí está el código SVG:

Ejemplo

<svg height="60" width="200">
  <text x="0" y="15" fill="red" transform="rotate(30 20,40)">I love SVG</text>
</svg>
Inténtalo tú mismo "

Ejemplo 3

La <text> elemento puede estar dispuesto en cualquier número de sub-grupos con el <tspan> elemento. Cada <tspan> elemento puede contener un formato diferente y posición.

Texto en varias líneas (with the <tspan> element) :

Varias líneas: Primera linea. Segunda linea. Lo sentimos, su navegador no soporta SVG en línea.

Aquí está el código SVG:

Ejemplo

<svg height="90" width="200">
  <text x="10" y="20" style="fill:red;">Several lines:
    <tspan x="10" y="45">First line.</tspan>
    <tspan x="10" y="70">Second line.</tspan>
  </text>
</svg>
Inténtalo tú mismo "

Ejemplo 4

Texto como un vínculo (with the <a> element) :

Me encanta SVG! Lo sentimos, su navegador no soporta SVG en línea.

Aquí está el código SVG:

Ejemplo

<svg height="30" width="200" xmlns:xlink="http://www.w3.org/1999/xlink">
  <a xlink:href="http://www.w3ii.com/svg/default.html" target="_blank">
    <text x="0" y="15" fill="red">I love SVG!</text>
  </a>
</svg>
Inténtalo tú mismo "