博客列表 >HTML学习列表与表格

HTML学习列表与表格

。。。
。。。原创
2022年03月18日 16:06:42354浏览

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>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议