DEV Community

Discussion on: Which CSS Framework should I use ?

Collapse
 
tangtangtang profile image

Tailwindcss is very nice, Bootstrap I use its grid system and some interactive components like collapse. So HTML will be.

<div class="row -mx-8 md:-mx-4">
  <div class="col-3 col-lg-6 col-md-12 px-8 mt-12 md:px-4 lg:mt-8">
    <a class="item block">
  </div>
</div>
Enter fullscreen mode Exit fullscreen mode

Also I converted mobile first to PC first

Collapse
 
sehgalspandan profile image
Spandan Sehgal

Ok, thanks for your time