1. 主页
  2. 文档
  3. HTML
  4. 案例解析
  5. ol有序列表

ol有序列表

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <!-- 有序列表 -->
    <ol>
        <li>11111</li>
        <li>222222</li>
        <li>333333</li>
    </ol>
    <!-- 有序列表  -->
    <ol type="A">
        <li>111</li>
        <li>222</li>
    </ol>

    <ol type="i">
        <li>111</li>
        <li>2222</li>
        <li>33333</li>
    </ol>

    <ol type="1" start="2">
        <li>111</li>
        <li>2222</li>
        <li>33333</li>
    </ol>
    <!-- 定义列表 -->
    <dl>
        <dt>shuzi</dt>
        <dd>1111</dd>
        <dt>shuzi</dt>
        <dd>2222</dd>
        <dt>shuzi</dt>
        <dd>3333</dd>
    </dl>
</body>

</html>
这篇文章对您有用吗?

我们要如何帮助您?