Blogger Information
Blog 12
fans 0
comment 0
visits 5465
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML学习列表与表格
。。。
Original
348 people have browsed it

HTML学习列表与表格

1.列表制作图文列表

例子

效果演示1

代码

  1. <ul class="nav" style="display: flex; list-style: none">
  2. <li class="item">
  3. <a href="https://baidu.com">
  4. <img src="static/images/dog.jpg" alt="" />
  5. <p class = "name">小狗</p>
  6. </a>
  7. </li>
  8. &nbsp;
  9. <li class="item">
  10. <a href="https://baidu.com">
  11. <img src="static/images/bear.jpg" alt="" />
  12. <p class = "name"></p>
  13. </a>
  14. </li>
  15. &nbsp;
  16. <li class="item">
  17. <a href="https://baidu.com">
  18. <img src="static/images/duck.jpg" alt="" />
  19. <p class = "name">鸭子</p>
  20. </a>
  21. </li>
  22. &nbsp;
  23. </ul>

2.表格制作商品表

例子

效果演示2

代码

  1. <table border="1" width="400">
  2. <caption>
  3. 商品表
  4. </caption>
  5. <!-- 表头 -->
  6. <thead>
  7. <tr>
  8. <th>商品名称</th>
  9. <th>商品类型</th>
  10. <th>商品价格</th>
  11. <th>商品数量</th>
  12. </tr>
  13. </thead>
  14. <!-- 主体 -->
  15. <tbody>
  16. <tr>
  17. <td>小米手机</td>
  18. <td>手机</td>
  19. <td>4999</td>
  20. <td>10</td>
  21. </tr>
  22. <tr>
  23. <td>华硕电脑</td>
  24. <td>电脑</td>
  25. <td>6999</td>
  26. <td>5</td>
  27. </tr>
  28. <tr>
  29. <td>Apple Watch</td>
  30. <td>手表</td>
  31. <td>2999</td>
  32. <td>3</td>
  33. </tr>
  34. <tfoot>
  35. <tr>
  36. <td colspan="4" bgcolor="cyan">备注:价格以商家实际出售价格为准</td>
  37. </tr>
  38. </tfoot>
  39. </tbody>
  40. </table>
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