Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

text

Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.

El elemento text define un elemento gráfico que consiste en texto. Nótese que es posible aplicar un degradado, patrón, recorte, máscara o filtro al texto

Uso

CategoriasElemento gráfico, Elemento de contenido de texto
Contenido permitidoDatos de caracteres y cualquier cantidad de los siguientes elementos en cualquier órden:
Elementos de animación
Elementos descriptivos
Elementos de contenido de texto
<a>

Ejemplo

<?xml version="1.0"?>
<svg xmlns="https://www.w3.org/2000/svg"
     width="100px" height="30px" viewBox="0 0 1000 300">

  <text x="250" y="150" 
        font-family="Verdana" 
        font-size="55">
    Hello, out there
  </text>

  <!-- Show outline of canvas using 'rect' element -->
  <rect x="1" y="1" width="998" height="298"
        fill="none" stroke-width="2" />
</svg>

El elemento <text> es usado para dibujar texto. El siguiente código de ejemplo es usado para dibujar texto con coordenadas.

<svg xmlns="https://www.w3.org/2000/svg" width="100px" height="50px">
  <text x="10" y="20">SVG Text Example</text>
</svg>

El elemento text puede ser rotado. El siguiente código de ejemplo muestra cómo.

<svg xmlns="https://www.w3.org/2000/svg" width="100px" height="50px">
  <text x="10"  y="20" 
        transform="rotate(30 20,40)">
    SVG Text Rotation example
  </text>
</svg>

SVG text también puede ser estilizado

<svg xmlns="https://www.w3.org/2000/svg" width="100px" height="50px">
  <text x="10"  y="20"
        style="font-family: Times New Roman;
               font-size  : 24;
               stroke     : #00ff00;
               fill       : #0000ff;">
    SVG text styling
  </text>
</svg>

Atributos

Atributos globales

Atributos específicos

Interfaz DOM

Este elemento hereda la interfaz de SVGTextElement.

Compatibilidad con navegadores

Feature Chrome Firefox (Gecko) IE Opera Safari
Basic support 1.0 1.5 (1.8) 9.0 8.0 3.0.4
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support 3.0 1.0 (1.8) No support (Yes) 3.0.4

La gráfica está basada en  estas fuentes.

Relacionados

Etiquetas y colaboradores del documento

 Colaboradores en esta página: Sebastianz, emorc
 Última actualización por: Sebastianz,