반응형
Brackets + Emmet : http://recoveryman.tistory.com/138
Sublime Text 3 + Emmet : https://github.com/sergeche/emmet-sublime#readme
EMMET 사이트 : http://docs.emmet.io/
EMMET 치트시트 : http://docs.emmet.io/cheat-sheet/
EMMET 다운로드 : http://emmet.io/download/
Syntax
Child: >
- nav>ul>li
Sibling: +
- div+p+bq
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*5
Item numbering: $
- ul>li.item$*5
- h$[title=item$]{Header $}*3
- ul>li.item$$$*5
- ul>li.item$@-*5
- ul>li.item$@3*5
ID and CLASS attributes
- #header
- .title
- form#search.wide
- p.class1.class2.class3
Custom attributes
- p[title="Hello world"]
- td[rowspan=2 colspan=3 title]
- [a='value1' b="value2"]
Text: {}
- a{Click me}
- p>{Click }+a{here}+{ to continue}
Implicit tag names
- .class
- em>.class
- ul>.class
- table>.row>.col
반응형
'개발일지 > 2016' 카테고리의 다른 글
[jQuery] element append/remove animate (0) | 2016.05.20 |
---|---|
[jQuery] 스크롤 최하단 자동 포커스(auto scroll to bottom of page with jquery) (0) | 2016.05.20 |
[UI] Instagram NEW LOOK (0) | 2016.05.13 |
[jQuery] Paul gave me a tip (0) | 2016.05.09 |
[CSS] 길이가 다른 element 상단 정렬하기 (n번째 요소 clear:both) (0) | 2016.05.02 |