Blogger Information
Blog 94
fans 0
comment 0
visits 92694
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
【HTML】Emmet 语法总结 [html基础]
可乐随笔
Original
358 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="en">
  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>Emmet语法</title>
  8. </head>
  9. <body>
  10. <!-- 1. 标签与内容 -->
  11. <h3>html是结构化标签语言</h3>
  12. <div class="">默认标签div</div>
  13. <!-- 2. 属性与语法糖 [键值对]{内容} -->
  14. <!-- [id=app]{app} -->
  15. <div id="app">app</div>
  16. <!-- [class="title"]{title} -->
  17. <div class="title">title</div>
  18. <!-- #app{app1} -->
  19. <div id="app">app1</div>
  20. <!-- .title{title} -->
  21. <div class="title">title</div>
  22. <!-- 3. 重复: '*' -->
  23. <!-- .container{box}*3 -->
  24. <div class="contarner">box</div>
  25. <div class="contarner">box</div>
  26. <div class="contarner">box</div>
  27. <!-- 4. 父与子: `*` -->
  28. <!-- ul>li{item}*3 -->
  29. <ul>
  30. <li>item</li>
  31. <li>item</li>
  32. <li>item</li>
  33. </ul>
  34. <!-- 5. 兄弟关系: `+` -->
  35. <!-- h3{标题}+p{内容} -->
  36. <h3>标题</h3>
  37. <p>内容</p>
  38. <!-- 6. 父级: '^' -->
  39. <!-- .box>span{text}^h3{小标题} -->
  40. <div class="box"><span>text</span></div>
  41. <h3>小标题</h3>
  42. <!-- 7. 分组: '(...)' -->
  43. <!-- nav>h3{导航}+ul>li*3>a{link} -->
  44. <nav>
  45. <h3>导航</h3>
  46. <ul>
  47. <li><a href="">link</a></li>
  48. <li><a href="">link</a></li>
  49. <li><a href="">link</a></li>
  50. </ul>
  51. </nav>
  52. <!-- 8. 序号: '$','$@3' -->
  53. <!-- ul>li{item-$@3}*3 -->
  54. <ul>
  55. <li>item-3</li>
  56. <li>item-4</li>
  57. <li>item-5</li>
  58. </ul>
  59. </body>
  60. </html>
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