DEV Community

Cezary Tomczyk
Cezary Tomczyk

Posted on

1

A simple trick to check how much Tailwind impacts the HTML size

Follow these steps.

  1. Go to any page that uses Tailwind.
  2. Open the developer console.
  3. Execute code new Blob([document.documentElement.outerHTML]);. Notice the returned number. It represents approximately the HTML size.
  4. Execute code Array.from(document.getElementsByTagName('*')).forEach((el) => { el.className = ''; }). This removes all CSS classes.
  5. Execute code new Blob([document.documentElement.outerHTML]). The number represents the HTML size after all CSS classes were removed.

Calculate how much (%) the HTML size has increased.

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay