Tailwind CSS

Tailwind is like Bootstrap for React; it’s bigger and dumber than Vanilla JS & Web Standards; but is like PHP in that you can guess the names of things; once you learn the syntax it’s just writing CSS as Selectors.

A single element might have all it’s CSS written as classes like so:

or a whole list of elements w/ their CSS as classes like:

<div class="mt-10 grid grid-cols-3 sm:grid-cols-4 lg:grid-cols-6 gap-2">
  <div class="flex items-center justify-center py-6 px-2 rounded-sm bg-[#1c32ff05]">...</div>
  <div class="flex items-center justify-center py-6 px-2 rounded-sm bg-[#1c32ff05]">...</div>
  <div class="flex items-center justify-center py-6 px-2 rounded-sm bg-[#1c32ff05]">...</div>
</div>