El atributo de valor <li> en HTML se utiliza para especificar el valor inicial del elemento de la lista. Sólo es aplicable en la lista ordenada.
Sintaxis:
<li value="number">list items </li>
Valor de atributo: este atributo contiene un número de valor único que se utiliza para especificar el valor de los elementos de la lista.
Ejemplo 1: este ejemplo utiliza el atributo de valor <li> para crear una lista de elementos.
html
<!DOCTYPE html> <html> <head> <title> HTML list item value Attribute </title> </head> <body> <center> <h1 style = "color: green;"> GeeksforGeeks </h1> <h2> HTML list item value Attribute </h2> <p>Sorting Algorithms</p> </center> <ol style="margin-left:42%"> <li value="50">Merge sort</li> <li>Quick sort</li> <li>Insertion sort</li> </ol> </body> </html>
Producción:
Ejemplo 2: este ejemplo utiliza el atributo de valor <li> para crear una lista de elementos.
html
<!DOCTYPE html> <html> <head> <title> HTML li value Attribute </title> </head> <body> <h1 style = "color: green;"> GeeksforGeeks </h1> <h2> HTML li value Attribute </h2> <p>Sorting Algorithms</p> <ol type = "A"> <li value="6">Merge sort</li> <li>Quick sort</li> <li>Insertion sort</li> </ol> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de valor <li> se enumeran a continuación:
- safari de manzana 4
- Google cromo 1
- Borde 12
- Firefox 1
- Ópera 12.1
- explorador de Internet 6
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA