Blogger Information
Blog 14
fans 0
comment 0
visits 11500
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
vscode安装配置,emmet语法使用
暮光薄凉
Original
644 people have browsed it

0917作业

1. vscode安装

安装源:官网下载
下载安装包,选择默认安装、并配置相关插件:

2. emmet语法使用

  1. <!--生成多个下级标签 -->
  2. div>ul>lu*5>a
  3. <div>
  4. <ul>
  5. <li><a href=""></a></li>
  6. <li><a href=""></a></li>
  7. <li><a href=""></a></li>
  8. <li><a href=""></a></li>
  9. <li><a href=""></a></li>
  10. </ul>
  11. </div>
  12. div>ul>li*5>a{hello$}
  13. <div>
  14. <ul>
  15. <li><a href="">hello1</a></li>
  16. <li><a href="">hello2</a></li>
  17. <li><a href="">hello3</a></li>
  18. <li><a href="">hello4</a></li>
  19. <li><a href="">hello5</a></li>
  20. </ul>
  21. </div>
  1. <!--生成同级标签 -->
  2. div+p+a
  3. <div></div>
  4. <p></p>
  5. <a href=""></a>
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