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