HTML 保留屬性
HTML 保留屬性定義 ol HTML 元素中的列表順序在 HTML 文件中應該從大到小。
語法
以下是語法 −
<ol reserved></ol>
我們來看一個 HTML 保留屬性的示例 −
示例
<!DOCTYPE html>
<html>
<style>
body {
color: #000;
height: 100vh;
background-color: #8BC6EC;
background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
}
</style>
<body>
<h1>HTML reversed Demo</h1>
<p>List of subjects: </p>
<ol reversed>
<li>Physics</li>
<li>Chemistry</li>
<li>Maths</li>
<li>Biology</li>
<li>Economics</li>
</ol>
</body>
</html>輸出

廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP