美文网首页
HTML 列表

HTML 列表

作者: _Waiting_ | 来源:发表于2019-08-13 11:47 被阅读0次

    有序列表

    ol : order list
    //type 序号类型
    //start 从哪个序号开始
    <ol type = "a" start = "3">
    <li>1</li>
    <li>2</li>
    <li>3</li>
    </ol>

    展示效果:
    c.1
    d.2
    e.3

    无需列表

    ul: unorder list
    //type 序号类型
    //start 从哪个序号开始
    <ul >
    <li>1</li>
    <li>2</li>
    <li>3</li>
    </ul>

    展示效果:
    · 1
    · 2
    · 3

    自定义列表

    <dl>:
    dt:标题
    dd:详情
    <dl>
    <dt></dt>
    <dd></dd>
    </dl>

    相关文章

      网友评论

          本文标题:HTML 列表

          本文链接:https://www.haomeiwen.com/subject/rpsvjctx.html