Blogger Information
Blog 33
fans 0
comment 0
visits 49702
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML 列表简介
Lon
Original
915 people have browsed it

一、HTML 有序列表

同样,有序列表也是一列项目,列表项目使用数字进行标记。 有序列表始于 <ol> 标签。每个列表项始于 <li> 标签。

列表项使用数字来标记。

  1. <h3>东京奥运奖牌榜</h3>
  2. <ol>
  3. <li>美国:113</li>
  4. <li>中国:88</li>
  5. <li>日本:58</li>
  6. </ol>

二、HTML无序列表

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

无序列表使用 <ul> 标签

  1. <h3>购物车</h3>
  2. <ul>
  3. <li>笔记本电脑一台</li>
  4. <li>蓝牙耳机一副</li>
  5. <li>卫生纸10卷</li>
  6. </ul>

三、HTML 自定义列表

自定义列表不仅仅是一列项目,而是项目及其注释的组合。

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

  1. <dl style="display: grid; grid-template-columns: 3em 16em">
  2. <dt>地址:</dt>
  3. <dd>广东省广州市天河区幸福大街1号</dd>
  4. <dt>邮箱:</dt>
  5. <dd>123456@163.cn</dd>
  6. </dl>

四、应用

ul + li + a

  1. <ul class="menu" style="display: flex; place-content: space-around">
  2. <li class="item"><a href="">首页</a></li>
  3. <li class="item"><a href="">教学视频</a></li>
  4. <li class="item"><a href="">社区问答</a></li>
  5. <li class="item"><a href="">资源下载</a></li>
  6. <li class="item"><a href="">关于我们</a></li>
  7. </ul>
Correcting teacher:PHPzPHPz

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