Blogger Information
Blog 5
fans 0
comment 0
visits 2106
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Emmet常用的语法
高如祥
Original
544 people have browsed it

Emmet常用的语法

1.Emmet简介

Emmet是用来提高编写 HTML 和 CSS 代码速度的便利工具。将它整合进文本编辑器,可以提供一些功能和快捷方式,加快开发速度。提供包括 Eclipse、IDEA、UltraEdit、SlickEdit 的插件。

  1. <!-- .title -->
  2. <div class="title">默认标签</div>
  3. <!-- ul>li*3{item-$} -->
  4. <ul>
  5. <li>item-1</li>
  6. <li>item-2</li>
  7. <li>item-3</li>
  8. </ul>
  9. <hr>
  10. <!-- ul>li*3{item-$@6} -->
  11. <ul>
  12. <li>item-6</li>
  13. <li>item-7</li>
  14. <li>item-8</li>
  15. </ul>
  16. <hr>
  17. <!-- ul>li*3{item-$@-1} -->
  18. <ul>
  19. <li>item-3</li>
  20. <li>item-2</li>
  21. <li>item-1</li>
  22. </ul>
  23. <!-- P{随便}+span{练练} -->
  24. <P>随便</P>
  25. <span>练练</span>
Correcting teacher:PHPzPHPz

Correction status:unqualified

Teacher's comments:共有8种
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