7️⃣ 꼭 알아야 할 개발자를 위한 VSCODE 단축키 Thread🧵
5463 단어 vscode
div#info 👇
<div id="info"></div>
div.header 👇
<div class="header"></div>
form#search.info 👇
<form id="search" class="info"></form>
p.info1.info2.info3#info
<p class="info1 info2 info3" id='info'></p>
ul>li 👇
<ul>
<li></li>
</ul>
ul>li*5 👇
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
div+section+p 👇
<div></div>
<section></section>
<p></p>
a{Google} 👇
<header> <a href="">Google</a> </header>
div>(header>ul>li*2>a)+footer>p 👇
<div>
<header>
<ul>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
</header>
<footer>
<p></p>
</footer>
</div>
ul>.item👇
<ul>
<li class="item"></li>
</ul>
table>.row>.col*3 👇
<table>
<tr class="row">
<td class="col"></td>
<td class="col"></td>
<td class="col"></td>
</tr>
</table>
ul>li.item$*5
<ul>
<li class="item1"></li>
<li class="item2"></li>
<li class="item3"></li>
<li class="item4"></li>
<li class="item5"></li>
</ul>
팔로우 감사합니다✨
제안할 수 있는 다른 VSCODE 단축키는 무엇입니까?
아래 댓글👇👇
Reference
이 문제에 관하여(7️⃣ 꼭 알아야 할 개발자를 위한 VSCODE 단축키 Thread🧵), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/qbentil/7-vscode-shortcuts-for-developers-you-should-know-thread-2p9l텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)