Skip to content

Instantly share code, notes, and snippets.

@palimadra
Created October 1, 2014 19:10
Show Gist options
  • Save palimadra/effa522bd48f13a06167 to your computer and use it in GitHub Desktop.
Save palimadra/effa522bd48f13a06167 to your computer and use it in GitHub Desktop.
Emmet shortcuts less used
<!-- Skip The Div #1 -->
div.container
<!-- Skip The Div #2 -->
.container
<!-- Implicit Tag Names -->
.wrap>ul.list>.sites
<!-- Chaining Abbreviations -->
.outer>.inner>h1+p
<!-- Climbing Up #1 -->
.wrap>p>a^p
<!-- Climbing Up #2 -->
.wrap>p>em>a^^p
<!-- Grouping #1 -->
(.one>h1)+(.two>h1)
<!-- Grouping #2 -->
(section>.wrap>h1>p>a)+(section>.wrap>p+p)
<!-- Text & Attributes #1 -->
h1{heading}+p{lorem ipsum}
<!-- Text & Attributes #2 -->
a[href="http://www.apple.com"]{Apple}
<!-- Multiple Class Names -->
.one.two.three
<!-- Multiplication #1 -->
ul>li*3
<!-- Multiplication #2 -->
(section>.wrap)*2
<!-- Automatic Numbering -->
ul>li.item${item $$}*3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment