8 Emmet Tips You Might Not Know
Emmet (who remembers when it was called Zen Coding?) is a very useful code editor tool that brings snippets and supercharged shortcuts for generating HTML/markup and even CSS.
Save tons of time in your daily workflow by learning more of Emmet syntax. Also remember that all of these examples will be in plain HTML files, but you can also configure Emmet to be used with React/JSX, Angular templates, Vue templates, and more.
To give you a quick example of Emmet's main use, expanding an abbreviation into full HTML.
We'll be typing the following and pressing tab to expand it:
section.hero.is-info>.hero-body>.container>h1.title{Hello!}
The following will be expanded to:
<section class="hero is-info">
<div class="hero-body">
<div class="container">
<h1 ...