博客列表 >导航栏和table表格练习

导航栏和table表格练习

以前真好
以前真好原创
2022年03月18日 13:52:51425浏览

图文导航栏演示

  1. <style>
  2. nav {
  3. display: flex;
  4. justify-content: space-around;
  5. width: 600px;
  6. }
  7. nav li {
  8. list-style: none;
  9. text-align: center;
  10. }
  11. nav li a{
  12. text-decoration: none;
  13. color: black;
  14. }
  15. </style>
  16. <h3 class="page-title">一个简易导航栏</h3>
  17. <nav>
  18. <li><a href="https:php.cn"><img width="150"
  19. src="https://img.php.cn/upload/course/000/000/041/6209c897986f5556.jpg" alt=""></a>
  20. <p><a href="">PHP中文网</a></p>
  21. </li>
  22. <li><a href="https:php.cn"><img width="150"
  23. src="https://img.php.cn/upload/course/000/000/041/6209c897986f5556.jpg" alt=""></a>
  24. <p><a href="">PHP中文网</a></p>
  25. </li>
  26. <li><a href="https:php.cn"><img width="150"
  27. src="https://img.php.cn/upload/course/000/000/041/6209c897986f5556.jpg" alt=""></a>
  28. <p><a href="">PHP中文网</a></p>
  29. </li>
  30. </nav>

永惠超市蔬菜一览表

  1. <table border="1" width="500px" style="border-collapse:collapse">
  2. <caption>永惠超市商品一栏表</caption>
  3. <thead >
  4. <tr bgcolor="#eee">
  5. <th>产品名</th>
  6. <th>产地</th>
  7. <th>品级</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. <tr>
  12. <td bgcolor="#eee">
  13. 大白菜
  14. </td>
  15. <td>
  16. 山东寿光
  17. </td>
  18. <td>
  19. 一级
  20. </td>
  21. </tr>
  22. <tr>
  23. <td bgcolor="#eee">
  24. 花菜
  25. </td>
  26. <td>
  27. 山东寿光
  28. </td>
  29. <td>
  30. 一级
  31. </td>
  32. </tr>
  33. <tr>
  34. <td bgcolor="#eee">
  35. 西红柿
  36. </td>
  37. <td>
  38. 山东寿光
  39. </td>
  40. <td>
  41. 一级
  42. </td>
  43. </tr>
  44. <tfoot align="center" >
  45. <tr>
  46. <td bgcolor="#eee" colspan="4">2022年3月18号蔬菜一览</td>
  47. </tr>
  48. </tfoot>
  49. </tbody>
  50. </table>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议