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


HTML reversed屬性用法及代碼示例


它是一個布爾屬性,用於以降序(9,8,7,6…..)而不是升序(1,2,3…。)對列表進行排序。

用法:

<ol reversed>
    <li> Content... </li>
    <li> Content... </li>
    ...
    <li> Content... </li>
</ol>

屬性:它包含反轉的單個屬性。它是一個布爾屬性,以降序指定列表。

Example:

<!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 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反向屬性支持的瀏覽器:

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




相關用法


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