Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
kiki3524440dToo thick of a brush. You’ll need a thinner one really soon, but real css mixes with tailwind like oil and water
-
jestdotty516840dcss frameworks are awkward. easier to write your own css, if you have the experience for it I guess
I did like stylus but you have to keep adding it as a transpiler everywhere so it's not really worth the effort. but it let you generate css using loops and variables and such -
localpost421440dbecause it's literally one css class name per css rule you want to apply, but all in one line, cluttering your markup.
-
Grumm179740dI always love to see a div with 200 classes on it just to have a round border and aligned in the center. How can it be worse ?
-
Tounai127040dI guess true frontend people hate it because it creates huge mess in HTML code.
On my side I hate having to edit many files for one feature (and I hate frontend) so the the faster I am done the better. -
bosslogic19640dTailwind was cool at first. Started all my projects with it.
But, Tailwind fails at complex styles. It's just unwieldly, imo. The markup starts to look dumb.
So, now I only use it for simple responsive styling. This is my solution for keeping things clean while using tailwind and normal styling together. -
Grumm179737d@kiki Sure, that is a good think.
But this :
<div class="grid grid-cols-3 gap-4 place-items-start mt-4 md:mt-0 md:ml-6 bg-red-100 md:items-center pt-6 md:-8 px-8 py-12 sm:max-w-xl"> </div>
Sure, great but at some point, isn't it better to call it <div class="myPersonalGrid"> </div> and put all the styling there ? -
jiraTicket229723dNever really used Tailwind so can't say I hate it - but I can say it doesn't appeal to me at a surface level.
I'm used to one or two classNames, not dozens.
The code example written above me looks too much line inline CSS to me.
`div class="grid grid-cols-3 gap-4"`
just looks like
`div style="display: grid; grid-template-columns: auto auto auto; gap: var(--gap) * 4)`
How can you hate tailwind?, it's literally just css class names.
rant