Last active
January 10, 2021 21:46
-
-
Save fieldoffice/67ca26ee395cffff932240a80a929259 to your computer and use it in GitHub Desktop.
Emmet Basics
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Child > | |
nav>ul>li | |
#Sibling + | |
h1+h2+p | |
#Climb-up ^ | |
div+div>p>span+em^bq | |
div+div>p>span+em^^bq | |
#Grouping () | |
div>(header>ul>li*2>a)+footer>p | |
(div>dl>(dt+dd)*3)+footer>p | |
#Multiplication * | |
ul>li*3 | |
#Item numbering $ | |
ul>li.item$*3 | |
#ID and class | |
#id.class | |
#Text | |
a{Click me} | |
p>{Click }+a{here}+{ to continue} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment