先看个例子:如下图:

    html的列表

     使用的 html标签为

       <ul>   <!--ul是UnorderList的缩写,意为无序列表;li是ListItem的缩写,列表项-->

           <li></li>

       </ul>

 1 <html>
 2   <head>
 3        <title>html list test</title>
 4   </head>
 5   <body>
 6       <!--ul is the Unordered_List -->
 7       <ul>
 8          <!--li is List_Item-->
 9          <li>Tommy</li>
10          <li>Jacky</li>
11          <li>Sam</li>
12       </ul>
13   </body>
14 </html>
View Code

相关文章:

  • 2021-12-07
  • 2022-02-01
  • 2021-12-02
猜你喜欢
  • 2022-01-06
  • 2021-11-07
  • 2022-02-16
  • 2022-12-23
  • 2021-12-18
  • 2021-12-27
  • 2021-12-12
相关资源
相似解决方案