Blogger Information
Blog 13
fans 0
comment 0
visits 9112
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
初学 emmet 生成标签
ianren
Original
448 people have browsed it

emmet

快速生成 div 标签

  • div.box 按 Tab 键
  • .boc
    -div#active
  1. <div class="box"></div>

文本标签

  • P{文本内容}
  1. <p>文本内容</p>

多层标签 > 为下级标签

  • .box>p>a
  1. <div class="box">
  2. <p><a href=""></a></p>
  3. </div>

平层标签 + 为平级标签

  • .box+p+.active
  1. <div class="box"></div>
  2. <p></p>
  3. <div class="active"></div>

父级标签 ^

  • .box>.active>p>a^^.shop
  1. <div class="box">
  2. <div class="active">
  3. <p><a href=""></a></p>
  4. </div>
  5. <div class="shop"></div>
  6. </div>
  • .box>.active>p>a^.shop
  1. <div class="box">
  2. <div class="active">
  3. <p><a href=""></a></p>
  4. <div class="shop"></div>
  5. </div>
  6. </div>

重复标签 * n(数量)

ul.box>li.active*6

  1. <ul class="box">
  2. <li class="active"></li>
  3. <li class="active"></li>
  4. <li class="active"></li>
  5. <li class="active"></li>
  6. <li class="active"></li>
  7. <li class="active"></li>
  8. </ul>
Correcting teacher:autoloadautoload

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