Blogger Information
Blog 20
fans 0
comment 0
visits 10978
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
markdown常用语法,emmet常用语法
Original
322 people have browsed it

1.markdown常用语法

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

2.

无序列表与有序列表

  • 1
  • 2
    • 3
    • 4
      • 5
      • 6
        • 7
        • 8
  1. 1
  2. 2
    1. 3
    2. 4
    3. 5

3.

单行代码和多行

document.write('1')

  1. function a(){
  2. return '2'
  3. }

4.表格

id name age
1 one 8
2 two 9
3 three 10

2.emmet常用语法

  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. <!-- 生成id:#id 类: .nav -->
  11. <!-- 父子>与兄弟+ -->
  12. <!-- ol>li*3>a{item$} -->
  13. <ol>
  14. <li><a href="">item1</a></li>
  15. <li><a href="">item2</a></li>
  16. <li><a href="">item3</a></li>
  17. </ol>
  18. <!-- .box+.title -->
  19. <div class="box"></div>
  20. <div class="title"></div>
  21. <!-- 倒序与指定序号 $ @ -->
  22. <!-- ol>li*3>a{item$@-1} -->
  23. <ol>
  24. <li><a href="">item3</a></li>
  25. <li><a href="">item2</a></li>
  26. <li><a href="">item1</a></li>
  27. </ol>
  28. <!-- ol>li*3>a{item$@6} -->
  29. <ol>
  30. <li><a href="">item6</a></li>
  31. <li><a href="">item7</a></li>
  32. <li><a href="">item8</a></li>
  33. </ol>
  34. </body>
  35. </html>
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