Objeto Small de DOM HTML

Objeto Small

El objeto Small representa el elemento HTML <small>.

Acceder al objeto Small

Puede usar getElementById() para acceder al elemento <small>:

var x = document.getElementById("mySmall");

Prueba por tu cuenta

Crear el objeto Small

Puede usar el método document.createElement() para crear el elemento <small>:

var x = document.createElement("SMALL");

Prueba por tu cuenta

Atributos estándar y eventos

El objeto Small admite estándaresAtributosyEventos.

Páginas relacionadas

Tutoriales de HTML:Elementos de formateo de texto HTML

Manual de referencia de HTML:Etiqueta <small> de HTML