Emmet is great for the helping you complete HTML & CSS very quickly. Type your shortcut then press tab. The cursor will then be placed where you would logically be about to type.
article.priceoutputs:
<article class="price"></article>header#profileoutputs:
<header id="profile"></header>You can get pretty crazy with these:
div.header-navigation>header+navwill output the following:
<div class="header-navigation">
<header></header>
<nav></nav>
</div>ul>li.list-item*6will output the following:
<ul>
<li class="list-item"></li>
<li class="list-item"></li>
<li class="list-item"></li>
<li class="list-item"></li>
<li class="list-item"></li>
<li class="list-item"></li>
</ul>tacoutputs
text-align: center;mtoutputs
margin-top: ;

