EmmetVS is a powerful extension for Visual Studio 2022 that helps developers write HTML and CSS code faster using abbreviated syntax that expands into full code snippets.
Type an Emmet abbreviation and press Tab to expand it into full HTML/CSS code.
! → Basic HTML template
div → <div></div>
p → <p></p>
ul>li → <ul><li></li></ul>
div.classname → <div class="classname"></div>
div#idname → <div id="idname"></div>
Here are some common use cases:
nav>ul>li*5>a
<!-- Expands to -->
<nav>
<ul>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
</nav>
form>input:text+input:email+input:submit
<!-- Expands to -->
<form>
<input type="text">
<input type="email">
<input type="submit">
</form>