我必须在 html 中制作条款和条件页面,所以我想给他们一个数字,但有些条件有它们的子点,所以我想像下面的例子一样展示它们。
我第一点
1.1和我的分点
我第二点
我第三点
我是第四个
4.1和我的分点
可以使用 css 给他们这样的数字格式
<style>
ol {list-style:decimal}
</style>
</head>
<body>
<ol>
<li>me the first point
<ol><li>me the sub point</li></ol>
</li>
<li>me the second point</li>
<li>me the third point</li>
<li>me the forth point</li>
</ol>
</body>