码迷,mamicode.com
首页 > Web开发 > 详细

html-列表-3

时间:2018-12-03 14:02:22      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:title   doc   tab   lang   class   pre   没有   div   写法   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>列表</title>
    <h2>无序列表</h2>
    <!--    ul>li   ul>li*4  +tab   快捷写法-->
    <ul type="none">
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
    </ul>
    <hr>
    <!-- type
        disc 默认 小黑圆点
        circle 空心圆
        square 小方框
        none 没有
    -->
    <h2>有序列表</h2>
    <ol type="A">
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
    </ol>
    <hr>
    <h2>自定义列表</h2>
    <dl>
        <dt>1</dt>
        <dt>2</dt>
        <dt>3</dt>
        <dt>4</dt>
    </dl>
</head>
<body>

</body>
</html>

 

html-列表-3

标签:title   doc   tab   lang   class   pre   没有   div   写法   

原文地址:https://www.cnblogs.com/cxhzy/p/10057834.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!