minify-html/notes/Tag types.md

512 B

Tag types

Type Expected content
Formatting tags Text nodes.
Content tags Formatting tags, text nodes.
Layout tags Layout tags, content tags.
Content-first tags Content of content tags or layout tags (but not both).

Formatting tags

<strong> moat </strong>

Content tags

<p>Some <strong>content</strong></p>

Content-first tags

<li>Anthony</li>
<li>
  <div>
  </div>
</li>

Layout tags

<div>
  <div></div>
</div>