Blogger Information
Blog 62
fans 3
comment 1
visits 29890
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
markdown表格和html表格对比?
kiraseo_wwwkiraercom
Original
493 people have browsed it

markdown表格写法

id name email salary
1 注册 list1@qq.com 123456
2 长老 list4@qq.com 123456
3 长老1 list3@qq.com 123456
  1. # markdown表格写法
  2. |id |name| email| salary
  3. ---|---|---|---
  4. |1 |注册 |list1@qq.com |123456
  5. |2 |长老 |list4@qq.com | 123456
  6. |3 |长老1 |list3@qq.com |123456

html表格写法

  1. 快捷指令写法
  2. <!-- table.item>caption{表格}+(tbody>tr*5>td*8{文字}) -->
  3. 生成后代码
  4. <table class="item">
  5. <caption>表格</caption>
  6. <tbody>
  7. <tr>
  8. <td>文字</td>
  9. <td>文字</td>
  10. <td>文字</td>
  11. <td>文字</td>
  12. <td>文字</td>
  13. <td>文字</td>
  14. <td>文字</td>
  15. <td>文字</td>
  16. </tr>
  17. <tr>
  18. <td>文字</td>
  19. <td>文字</td>
  20. <td>文字</td>
  21. <td>文字</td>
  22. <td>文字</td>
  23. <td>文字</td>
  24. <td>文字</td>
  25. <td>文字</td>
  26. </tr>
  27. <tr>
  28. <td>文字</td>
  29. <td>文字</td>
  30. <td>文字</td>
  31. <td>文字</td>
  32. <td>文字</td>
  33. <td>文字</td>
  34. <td>文字</td>
  35. <td>文字</td>
  36. </tr>
  37. <tr>
  38. <td>文字</td>
  39. <td>文字</td>
  40. <td>文字</td>
  41. <td>文字</td>
  42. <td>文字</td>
  43. <td>文字</td>
  44. <td>文字</td>
  45. <td>文字</td>
  46. </tr>
  47. <tr>
  48. <td>文字</td>
  49. <td>文字</td>
  50. <td>文字</td>
  51. <td>文字</td>
  52. <td>文字</td>
  53. <td>文字</td>
  54. <td>文字</td>
  55. <td>文字</td>
  56. </tr>
  57. </tbody>
  58. </table>

生成后效果图
效果图

css美化后样式代码

  1. .item{ background-color:greenyellow; }
  2. .item>tbody>tr>td{border: 1px solid red;

生成后效果图
美化后的生成后的代码图片.png

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