Skip to content

Instantly share code, notes, and snippets.

@pixelspencil
Last active March 23, 2021 00:02
Show Gist options
  • Save pixelspencil/8aebabef5cd16b0ac0916aab6f45816b to your computer and use it in GitHub Desktop.
Save pixelspencil/8aebabef5cd16b0ac0916aab6f45816b to your computer and use it in GitHub Desktop.
Emmet 101

Emmet 101

Using Emmet with HTML

Creating nested html using >

<!-- emmet code -->
ul#groceries>li>a>img

<!-- generated html -->
<ul id="groceries">
  <li>
    <a href=""><img src="" alt="" /></a>
  </li>
</ul>

Creating nested & adjacent html using +

<!-- emmet code -->
h1+ul#groceries>li>a>img

<!-- generated html -->
<h1></h1>
<ul id="groceries">
  <li>
    <a href=""><img src="" alt="" /></a>
  </li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment