DEV Community

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

Collapse
 
perpetual_education profile image
perpetual . education • Edited

We prefer no framework - because CSS in 2020 is amazing. The libraries just seem like an added mess.

<parent-component>
  <child-component>
    <!-- stuff -->
  </child-component>
</parent-component>

Is nice to read.

<div id="w23" class="col-2h padding border-2 drop-shadow-5 pull-left">
  <div class="inner-left col-2 col-12md">
    <!-- stuff -->
  </div>
</div>

Isn't. (for us)

Here's an example looking at tailwind

We DO still use a pre-processor - because mixins allow us an abstraction that makes writing CSS just a tiny bit more pleasurable. (and technically - that kinda means we have our own 'framework'...)