Blogger Information
Blog 9
fans 0
comment 0
visits 8011
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML列表元素
扬cium
Original
790 people have browsed it

列表元素

1.无序列表是一个项目的列表,此列项目使用粗体圆点(典型的小黑圆圈)进行标记。

无序列表使用 <ul>+<li> 标签
  1. <h4>无序列表:</h4>
  2. <ul>
  3. <li>牛奶</li>
  4. <li>饮料</li>
  5. </ul>

2.有序列表始于 <ol> 标签。每个列表项始于 <li> 标签。列表项使用数字来标记。

有序列表使用 <or>+<li> 标签
  1. <h3>购物车</h3>
  2. <ol>
  3. <li>苹果2斤</li>
  4. <li>蛋糕5个</li>
  5. </ol>

3.自定义列表以 <dl> 标签开始。每个自定义列表项以 <dt> 开始。每个自定义列表项的定义以 <dd> 开始。

自定义列表使用 <dl>+<dt>+<dd> 标签
  1. <dl>
  2. <dt> 名称:</dt>
  3. <dd>php中文网</dd>
  4. <dt>地址:</dt>
  5. <dd>合肥市政务新区</dd>
  6. <dt>联系</dt>
  7. <dd>电话:<a href="tel:13800000000">13800000000</a></dd>
  8. <dd>邮箱:<a href="mailto:admin@php.cn">admin@php.cn</a></dd>
  9. </dl>

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post