无序列表:

1. unordered list 以<ul>开头,以</ul>结果.

每个list item 以<li> tag开头.

2. 样式: bullet(小黑圆圈)

Choose List Item Marker

The CSS list-style-type property is used to define the style of the list item marker:

<ul style="list-style-type:disc"> 表示bullet,小黑点 •

<ul style="list-style-type:circle">空心圆圈 °

<ul style="list-style-type:square"> 实心方块

<ul style="list-style-type:none"> 无marker

备注: style="list-style-type:none"的语法可以换为 type="none",更简单.但支持的样式也更少.

extras:

CJK区域:

一,二,三: style="list-style-type:cjk-ideographic"或者cjk-decimal

天干:甲乙丙丁: cjk-heavenly-stem

地支:子丑寅卯: cjk-earthly-branch

很多种其他marker:

<li style="list-style-type: disc">disc</li>
<li style="list-style-type: circle">circle</li>
<li style="list-style-type: square">square</li>
<li style="list-style-type: decimal">decimal</li>
<li style="list-style-type: decimal-leading-zero">decimal-leading-zero</li>
<li style="list-style-type: lower-roman">lower-roman</li>
<li style="list-style-type: upper-roman">upper-roman</li>
<li style="list-style-type: lower-greek">lower-greek</li>
<li style="list-style-type: lower-latin">lower-latin</li>
<li style="list-style-type: upper-latin">upper-latin</li>
<li style="list-style-type: armenian">armenian</li>
<li style="list-style-type: georgian">georgian</li>
<li style="list-style-type: lower-alpha">lower-alpha</li>
<li style="list-style-type: upper-alpha">upper-alpha</li>
<li style="list-style-type: none">none</li>
<li style="list-style-type: inherit">inherit</li>
<li style="list-style-image: url('eyes.gif')">list-style-image: url('eyes.gif')</li>

最后一个可以用服务器上的图片作为marker.


3. 语法

<ul>内嵌套<li>,如:

<ul>

  <li>list1</li>

  <li>list2</li>

</ul>

<li>内再嵌套list必须先声明一个ol或者ul标签,如果声明多个,按最后面的.

如:

<ul>

  <li>list1

    <ul>

      <li>list1-1</li>

      <li>list1-2</li>

    </ul>

  </li>

  <li>list2</li>

</ul>

  有序列表

1. ol tag

2. list item marker类型

<ul type="none">同无序列表

type="1" 用数字表示

A/a 大小写字母

I/i 大小写罗马字母


最新文章

  1. 在Azure上部署Windows Server Core
  2. php gettext 多语言翻译
  3. CodeForces 548
  4. 在jasp页面循环显示
  5. UIScrollerView遇到UINavigationController
  6. Python 操作FTP
  7. linux编程之内存映射
  8. poj A Round Peg in a Ground Hole
  9. JavaScript的异步操作
  10. 我的MYSQL学习心得(十)
  11. ABP module-zero +AdminLTE+Bootstrap Table+jQuery权限管理系统第十二节--小结,Bootstrap Table之角色管理
  12. Redis基本认识和基础学习-基本命令
  13. Kirill And The Game CodeForces - 842A
  14. 【Android】自己动手做个扫雷游戏
  15. shell编程练习-打印九九乘法表(附:awk编程)
  16. 蓝牙协议分析(12)_LQ和RSSI的原理及应用场景
  17. C语言数据结构_严蔚敏+吴伟民 课本源码
  18. 四面美团,收割 offer
  19. ACM-ICPC 2018 南京赛区网络预赛 L题(分层最短路)
  20. 深入探讨 Java 类加载器(转)

热门文章

  1. [摘录] 图灵机与lambda演算的关系
  2. Delphi 中的 XMLDocument 类详解(9) - 关于 HasChildNodes 与 IsTextElement
  3. 更新node的版本,node没有安装到c盘,安装到了D盘
  4. Http协议Status状态代码
  5. 微信小程序组件封装
  6. linux----------阿里云服务器使用过程中遇到的各种问题以及解决渠道
  7. Interesting (manacher + 前缀和处理)
  8. Windows下静态库与动态库的创建与使用
  9. JavaScript 原型链学习(二)原型的动态性
  10. c# 文件与流