El valor inicial de una lista ordenada en HTML5 se puede especificar implementando el atributo HTML <ol> start y pasando el valor inicial (número) como el valor del atributo.
Los siguientes valores de la lista se establecen automáticamente en orden (por ejemplo, si el valor inicial se establece en 5, el siguiente valor será 6, luego 7, y así sucesivamente).
Sintaxis:
<ol start="Starting_value"> <li> Content </li> </ol>
Ejemplo 1: Después de agregar start=”4″ .
HTML
<!DOCTYPE html> <html> <head> <title>Start Example</title> </head> <body> <h3>Following is a list of oop languages</h3> <ol start="4"> <li>C++</li> <li>Java</li> <li>JavaScript</li> <li>Python</li> </ol> </body> </html>
Producción:
Ejemplo 2: Después de agregar start=”15″ en <ol>.
HTML
<!DOCTYPE html> <html> <head> <title>Start Example</title> </head> <body> <h3>Grocery list:</h3> <ol start="15"> <li>Oats</li> <li>Banana</li> <li>Milk</li> </ol> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por manishkrjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA