Blogger Information
Blog 19
fans 0
comment 0
visits 10197
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
emmet的语法和使用方法
搬砖来学php
Original
379 people have browsed it

1.html快速生成和属性的简写

  1. 快速生成html可以在 vscode编辑器使用!或者输入html5 即可快速生成
  2. id和class是属性用于表述,id可以用#号来简写 class即使用.号代替 ,内容引用{}
  3. #box{box}
  4. <div id="box">box</div> #box{box}
  5. class的使用方法是.
  6. .container{content}
  7. <div class="container">content</div>

2.层级的父子,兄弟关系使用符号的方法

1.父子的层级关系使用符号写法

  1. ur和li是 属于父子关系使用的>号 使用方法 ur>li>a{首页}
  2. 其中ur和li是属于父子关系
  1. <ul>
  2. <li><a href="">拼音</a></li>
  3. <li><a href="">五笔</a></li>
  4. <li><a href="">英语</a></li>
  5. </ul>

2.兄弟关系使用的符号写法

  1. 兄弟关系使用的写法符号是+号下面引用案例
  2. <div class="title">站点名称</div>
  3. <div class="url">php中文网</div>
  4. 快速生成 .title{站点名称}+.url{php中文网}

3.重复生成使用的是*

  1. 案例
  2. <ul>
  3. <li><a href="">中文</a></li>
  4. <li><a href="">中文</a></li>
  5. <li><a href="">中文</a></li>
  6. </ul>
  7. 生成的方法使用*ur>li*3>a{内容}

4.序号使用的符号是@和$

  1. 1.$的符号是默认从1递增,$符号使用在{$}里面
  2. 写法,ul.menu>li.item*4>a{itme$}
  3. <ul class="menu">
  4. <li class="item"><a href="">item1</a></li>
  5. <li class="item"><a href="">item2</a></li>
  6. <li class="item"><a href="">item3</a></li>
  7. <li class="item"><a href="">item4</a></li>
  8. </ul>
  9. 2.如需要使用指定递增方式需要在$后面引入@使用方法如下
  10. ul.menu>li.item*4>a{itme$@5}
  11. <ul class="menu">
  12. <li class="item"><a href="">itme5</a></li>
  13. <li class="item"><a href="">itme6</a></li>
  14. <li class="item"><a href="">itme7</a></li>
  15. <li class="item"><a href="">itme8</a></li>
  16. </ul>
  17. 3.反序列符号使用的方法在@里面增加-号
  18. ul.menu>li.item*4>a{itme$@-5}
  19. <ul class="menu">
  20. <li class="item"><a href="">itme8</a></li>
  21. <li class="item"><a href="">itme7</a></li>
  22. <li class="item"><a href="">itme6</a></li>
  23. <li class="item"><a href="">itme5</a></li>
  24. </ul>

5.表格的使用方法

  1. <table> 表格标签
  2. <thead> 表头
  3. <tbody></tbody> 表体
  4. </thead>
  5. </table>
  6. 如何快速的生成一个多行多列的表格,代码如下
  7. table>caption>{会员信息}+(thead>tr>th{时间}*8)+(tbody>tr*5>td{时间}*8)
  1. 效果如下
  2. <table>
  3. <caption>
  4. 会员信息
  5. <thead>
  6. <tr>
  7. <th>时间</th>
  8. <th>时间</th>
  9. <th>时间</th>
  10. <th>时间</th>
  11. <th>时间</th>
  12. <th>时间</th>
  13. <th>时间</th>
  14. <th>时间</th>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. <tr>
  19. <td>时间</td>
  20. <td>时间</td>
  21. <td>时间</td>
  22. <td>时间</td>
  23. <td>时间</td>
  24. <td>时间</td>
  25. <td>时间</td>
  26. <td>时间</td>
  27. </tr>
  28. <tr>
  29. <td>时间</td>
  30. <td>时间</td>
  31. <td>时间</td>
  32. <td>时间</td>
  33. <td>时间</td>
  34. <td>时间</td>
  35. <td>时间</td>
  36. <td>时间</td>
  37. </tr>
  38. <tr>
  39. <td>时间</td>
  40. <td>时间</td>
  41. <td>时间</td>
  42. <td>时间</td>
  43. <td>时间</td>
  44. <td>时间</td>
  45. <td>时间</td>
  46. <td>时间</td>
  47. </tr>
  48. <tr>
  49. <td>时间</td>
  50. <td>时间</td>
  51. <td>时间</td>
  52. <td>时间</td>
  53. <td>时间</td>
  54. <td>时间</td>
  55. <td>时间</td>
  56. <td>时间</td>
  57. </tr>
  58. <tr>
  59. <td>时间</td>
  60. <td>时间</td>
  61. <td>时间</td>
  62. <td>时间</td>
  63. <td>时间</td>
  64. <td>时间</td>
  65. <td>时间</td>
  66. <td>时间</td>
  67. </tr>
  68. </tbody>
  69. </caption>
  70. </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