El atributo HTML <ol> invertido es un atributo booleano y se usa para ordenar la lista en orden descendente (9, 8, 7, 6…..) en lugar de orden ascendente (1, 2, 3….) .
Sintaxis:
<ol reversed> <li> Content... </li> <li> Content... </li> ... <li> Content... </li> </ol>
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>reversed attribute</title> <style> h1, h2 { text-align: center; } </style> </head> <body> <h1 style="color:green;font-style:italic;"> GeeksforGeeks </h1> <h2 style="color:green;font-style:italic;"> HTML ol reversed attribute </h2> <p>List of all computer Subjects are</p> <ol reversed> <li>Data Structures</li> <li>Operating System</li> <li>python programming</li> <li>DBMS</li> <li>Computer Network</li> </ol> </body> </html>
Producción:
Navegadores compatibles:
- Google cromo 18
- Borde 79
- Firefox 18
- Ópera
- Safari 6
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA