Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 422 Bytes

emmet.md

File metadata and controls

20 lines (14 loc) · 422 Bytes

Emmet Abbreviations

Back

Emmet abbreviations can be used to speed up html, css creation

<!-- ul.list>li*3.row will generate  -->

<ul class="list">
  <li class="row"></li>
  <li class="row"></li>
  <li class="row"></li>
</ul>

Reference