개발노트

vscode emmet 본문

HTML CSS

vscode emmet

aloha2jh 2021. 5. 31. 13:06

attribute []

col[span="row" width=16%]*5 

 

tr[rowspan="2"]*5 

 

td[colspan="5"]{점심식사} 

 

 

텍스트{}

 

tbody.txt_c>(tr>th*2+td*1)*6

<tbody class="txt_c">
<tr>
<th></th>
<th></th>
<td></td>
</tr>
<tr>
<th></th>
<th></th>
<td></td>
</tr>...
</tbody>

 

colgroup>col[scope="col" width="15%"]*3tbody>(tr>th*2+td*1)*6

 

이외 emmet

https://docs.emmet.io/abbreviations/syntax/


인덱스 $

img[src="images/$.png"]*8

 

 

 

'HTML CSS' 카테고리의 다른 글

가상요소선택자 ::before ::after  (0) 2021.07.02
markup - meta tag  (0) 2021.06.25
sass(scss)  (0) 2021.05.05