列表

110 阅读1分钟
<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 start="1" type="a">
        <!-- start从多少开始
        type列表符号的类型 -->
        <li>把冰箱门打开</li>  
        <li>把大象装进去</li>
        <li>把冰箱门关上</li>
    </ol>

    <!-- 无序列表 -->
    <!-- <ul type="square">
        square方块  circle空心圆  none取消列表符号 -->
        <li>我是无序列表</li>
        <li>我是无序列表</li>
        <li>我是无序列表</li>
    </ul>
</body>
</html>