How I made my own CSS framework akin to TailwindCSS?
30 July 2021
SCSS
CSS framework
Tailwind
What is tailwind?
It is a utility first framework. It provides thousands of utility classes that can be used together to build complex components, directly in your markup.
You'll rarely end up writing actual CSS.
Why make my own framework?
I decided to make my own framework to gain a better understanding of how it all works and test my CSS skills.
I also used it in some of my react projects to test its usability, check
this project where I ended up using it.
How it works?
In Utility-based CSS frameworks, you style elements by applying pre-existing classes directly in your HTML. Check below example card that is made with MintUI