From a55b575e8089ee6cab7c5c262a7e6db55d0e34d6 Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:46:50 +0100 Subject: unslug es: move --- files/es/web/html/element/ol/index.html | 132 ++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 files/es/web/html/element/ol/index.html (limited to 'files/es/web/html/element/ol') diff --git a/files/es/web/html/element/ol/index.html b/files/es/web/html/element/ol/index.html new file mode 100644 index 0000000000..f62713c92b --- /dev/null +++ b/files/es/web/html/element/ol/index.html @@ -0,0 +1,132 @@ +--- +title: ol +slug: Web/HTML/Elemento/ol +tags: + - HTML + - 'HTML:Elemento' + - Todas_las_Categorías +translation_of: Web/HTML/Element/ol +--- +

Definición

+ +

El elemento ol permite definir listas o viñetas ordenadas (“Ordered List”), bien con numeración o alfabéticamente.

+ +
+
Sus etiquetas son: <ol> y </ol> (ambas obligatorias).
+
+ +
+
Crea una caja: en bloque.
+
+ +
+
Está definido como: Elemento de lista.
+
+ +
+
Puede contener: uno o más elementos li
+
+ +

Atributos

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Genericos
Atributovalordescripción
titletítulo del elemento
styleinformación de estilo en línea
ididentificador a nivel de documento
classidentificador a nivel de documento
dirdirección del texto
langinformación sobre el idioma
Eventos: onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup.
Específicos
No tiene
de transición
type(1|a|A|i|I)implícitoestilo de numeración
compactcompactimplícitoespacio entre objetos reducido
start'un número'implícitonúmero inicial de la secuencia
+ +

Ejemplos

+ +

El siguiente código:

+ +
<ol>
+ <li>punto uno</li>
+ <li>punto dos</li>
+ <li>punto tres</li>
+</ol>
+
+ +
+

Se visualiza así:

+ +
    +
  1. punto uno
  2. +
  3. punto dos
  4. +
  5. punto tres
  6. +
+
+ +

Comentarios

-- cgit v1.2.3-54-g00ecf