當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <ol> reversed屬性用法及代碼示例


HTML <ol>反向屬性是布爾屬性,用於按Descending Order(9,8,7,6…..)而不是升序(1,2,3…。)對列表進行排序。

用法:

<ol reserved>
    <li> Content... </li>
    <li> Content... </li>
    ...
    <li> Content... </li>
</ol>

例:


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>reserved 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>

輸出:

支持的瀏覽器:下麵列出了HTML ol相反屬性支持的瀏覽器:

  • 穀歌瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <ol> reversed Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。