DEV Community

Discussion on: Which CSS library do you prefer and WHY ?

 
perpetual_education profile image
perpetual . education • Edited

We don't seem to ever have problems with leaking. There's a template and declaration of how that template should look - but we use the cascade and we play it a little loose with the CSS file size.

That's why everyone can choose their own style. : )

For example - on overpass (great job! BTW) - there aren't that many things happening that you'd run into major regression problems, right? But - maybe LinkedIn or something for sure. We get to mostly work on greenfield projects / and we're teachers - so, it just makes sense for us to teach CSS instead of a kinda superset.

If pretending to see this project for the first time ever:

Example of wild CSS classes

How would a Junior developer know what any of that markup was for?

vs

<section class='about-us'>
  <picture class='logo'>...
  <h2 class='welcome-message'>...
</section>

What did you use before Tailwind?