美文网首页
06.CSS列表

06.CSS列表

作者: Lv_0 | 来源:发表于2017-06-02 21:45 被阅读0次
  • 无序列表

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <style type="text/css">
            .disc{
                list-style-type: disc;
            }
            .circle{
                list-style-type: circle;
            }
            .square{
                list-style-type: square;
            }
            .none{
                list-style-type: none;
            }
        </style>
    </head>
    <body>
        <ul class="disc">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ul>
        <ul class="circle">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ul>
        <ul class="square">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ul>
        <ul class="none">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ul>
    </body>
</html>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1.列表类型以list-style-type属性定义,默认值为disc;
2.常用的列表类型如上,根据浏览器支持类型的不同,可以设置不同的类型
运行图片
  • 有序列表

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <style type="text/css">
            .decimal{
                list-style-type: decimal;
            }
            .lAlpha{
                list-style-type: lower-alpha;
            }
            .uAlpha{
                list-style-type: upper-alpha;
            }
            .lRoman{
                list-style-type: lower-roman;
            }
            .uRoman{
                list-style-type: upper-roman;
            }
        </style>
    </head>
    <body>
        <ol class="decimal">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ol>
        <ol class="lAlpha">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ol>
        <ol class="uAlpha">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ol>
        <ol class="lRoman">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ol>
        <ol class="uRoman">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ol>
    </body>
</html>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1.列表类型以list-style-type属性定义,默认值为decimal;
2.常用的列表类型如上,根据浏览器支持类型的不同,可以设置不同的类型
运行图片
  • 列表图像

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <style type="text/css">
            .image{
                list-style-image: url(img/006.png)
            }
        </style>
    </head>
    <body>
        <ul class="image">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ol>
    </body>
</html>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1.常用图标无法展示想要的列表时,可以使用图片定义列表类型;
2.列表标记图像以list-style-image属性定义
运行图片
  • 列表标记位置

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <style type="text/css">
            .inside{
                list-style-position: inside;
            }
            .outside{
                list-style-position: outside;
            }
        </style>
    </head>
    <body>
        <ul class="inside">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ul>
        <ul class="outside">
            <li>01</li>
            <li>02</li>
            <li>03</li>
        </ul>
    </body>
</html>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1.列表标记位置以属性list-style-position定义,默认为outside
运行图片
  • 简写语法

list-style: square inside url('/i/eg_arrow.gif')
list-style: type position image

相关文章

  • 06.CSS列表

    无序列表 运行图片 有序列表 运行图片 列表图像 运行图片 列表标记位置 运行图片 简写语法

  • 06.Css基础(1)

    1.Css概念 CSS:是指层叠样式表(Cascading Style Sheets)级联样式表 1.1 Cs...

  • Markdown 系列(三) 列表

    无序列表 由圆点组成的列表 列表1 列表2 列表3 列表1 列表2 列表3 列表1 列表2 列表3 +-*这三种符...

  • markdown常用的语法

    列表 有序列表: 列表项 1 列表项 2 无序列表: 列表项 1 列表项 2 列表项 3 列表项 4 列表项缩进两...

  • markdown常用语法

    标题 列表 无序列表- 列表1 - 列表1.1 -列表1.2- 列表2 有序列表1. 列表1 1. 列表1....

  • html阶段第二节第一天

    高级标签 列表标签 无序列表 列表一 列表二 ...... 有序列表 列表一 列表二 ...... 定义列表dl...

  • markdown测试

    段落 三级标题 四级标题 五级标题 列表 无序列表 列表1 列表2 列表3 列表1 列表2 列表3 有序列表 列表...

  • 学习小组Day1笔记-Herobrine

    Day1-Herobrine 列表 无序列表 无序列表 无序列表 无序列表 有序列表 有序列表 有序列表 有序列表...

  • H5学习从0到1-H5列表(8)

    列表的基本语法 ol:有序列表 ul:无序列表 li:列表项 dl:列表 dt:列表项 dd:列表描述 常用列表 ...

  • 第一篇简书

    MarkDown首次使用 无序列表 列表1 列表2 列表3 有序列表 有序列表1 有序列表2 有序列表3 有序列表...

网友评论

      本文标题:06.CSS列表

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