Skip to content

Instantly share code, notes, and snippets.

@AndreaBarghigiani
Created January 29, 2018 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndreaBarghigiani/b55c244b1857f51546c0d645fb7bb6d7 to your computer and use it in GitHub Desktop.
Save AndreaBarghigiani/b55c244b1857f51546c0d645fb7bb6d7 to your computer and use it in GitHub Desktop.
Blocchi di codice utili per sperimentare con Emmet, dall'articolo pubblicato su SkillsAndMore: https://skillsandmore.org/emmet-crea-strutture-html/
<article>
<header class="titolo"></header>
<section class="corpo"></section>
<footer class="piede"></footer>
</article>
<div class="test"></div>
header>nav.menu>ul>li*4
<header>
<nav class="menu">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</nav>
</header>
ul>li.item$*5>a{Link$}
<ul>
<li class="item1"><a href="">Link1</a></li>
<li class="item2"><a href="">Link2</a></li>
<li class="item3"><a href="">Link3</a></li>
<li class="item4"><a href="">Link4</a></li>
<li class="item5"><a href="">Link5</a></li>
</ul>
article>header.titolo+section.corpo+footer.piede
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment