Blogger Information
Blog 29
fans 1
comment 0
visits 14857
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
emmet的语法和实际应用
风车
Original
315 people have browsed it

emmet的语法和实际应用

接下来是代码

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>7.02作业</title>
  8. </head>
  9. <body>
  10. <!-- 父子关系 用 > 重复生成用* 顺序用$ 顺序起始数 用@ -->
  11. <!-- ul>li*3>a{首页} -->
  12. <ul>
  13. <li><a href="">首页3</a></li>
  14. <li><a href="">首页4</a></li>
  15. <li><a href="">首页5</a></li>
  16. </ul>
  17. <!-- 兄弟关系用 + -->
  18. <!-- .title{学校名称}+.url{北大附中} -->
  19. <div class="title">学校名称</div>
  20. <div class="url">北大附中</div>
  21. <!-- 创建一个五行八列表格 -->
  22. <style>
  23. table{
  24. border-collapse: collapse;
  25. }
  26. table th,table td{
  27. border: 1px solid;
  28. padding: 10px;
  29. }
  30. </style>
  31. <table>
  32. <caption>第二学期课程表</caption>
  33. <thead>
  34. <tr>
  35. <th> </th>
  36. <th>第一节</th>
  37. <th>第二节</th>
  38. <th>第三节</th>
  39. <th>午休</th>
  40. <th>第一节</th>
  41. <th>第二节</th>
  42. </tr>
  43. </thead>
  44. <tbody>
  45. <tr>
  46. <th>周一</th>
  47. <td>语文</td>
  48. <td>语文</td>
  49. <td>语文</td>
  50. <td>午休</td>
  51. <td>语文</td>
  52. <td>语文</td>
  53. </tr>
  54. <tr>
  55. <th>周二</th>
  56. <td>语文</td>
  57. <td>语文</td>
  58. <td>语文</td>
  59. <td>午休</td>
  60. <td>语文</td>
  61. <td>语文</td>
  62. </tr>
  63. <tr>
  64. <th>周三</th>
  65. <td>语文</td>
  66. <td>语文</td>
  67. <td>语文</td>
  68. <td>午休</td>
  69. <td>语文</td>
  70. <td>语文</td>
  71. </tr>
  72. <tr>
  73. <th>周四</th>
  74. <td>语文</td>
  75. <td>语文</td>
  76. <td>语文</td>
  77. <td>午休</td>
  78. <td>语文</td>
  79. <td>语文</td>
  80. </tr>
  81. <tr>
  82. <th>周五</th>
  83. <td>语文</td>
  84. <td>语文</td>
  85. <td>语文</td>
  86. <td>午休</td>
  87. <td>语文</td>
  88. <td>语文</td>
  89. </tr>
  90. </tbody>
  91. </body>
  92. </html>

在实际应用中父子关系 用 > 兄弟关系用+ 重复生成用* 顺序用$ 顺序起始数用@
下面的代码会生成一个六行七列的课程表 其中的标签应用

<table> 是表格标签

<caption>用于定义表格标题

<td>用于定义表格内容

<th>和td的作用一样 用于定义表格内容 但是th会使内容加粗加黑

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