Tailwind vs vanilla CSS #4
Answered
by
Abhinav-ark
Sajithrajan03
asked this question in
Q&A
-
Why do you prefer Vanilla CSS over Tailwind for HTML Projects? |
Beta Was this translation helpful? Give feedback.
Answered by
Abhinav-ark
Mar 4, 2024
Replies: 1 comment
-
I use tailwind for react projects where i use components. In html since I repeat code, it's difficult to make a change if I use tailwind. I have to find and make changes in many places. If I use vanilla css, I can just modify the class which I've used in many places and the changes apply uniformly. However in react, since I don't repeat code, it's enough if I change tailwind classes in the component. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Sajithrajan03
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use tailwind for react projects where i use components. In html since I repeat code, it's difficult to make a change if I use tailwind. I have to find and make changes in many places. If I use vanilla css, I can just modify the class which I've used in many places and the changes apply uniformly. However in react, since I don't repeat code, it's enough if I change tailwind classes in the component.