Oh, bejesus. Shopify awards the Stupefiers. Why would anyone need any kind of framework for CSS?! It's the inherent human need to control something, to package water and sell it as magical water. I've never understood the whole idea. Bootstrap: the hard-to-remember, horrible shitshow forced on frontend devs. And people thought there couldn't possibly be anything lower than that. Then Tailwind arrived. Apparently, fro…
Shopify acquires Tailwind
221–230 of 411 posts
Re: Shopify acquires Tailwind
#222They are buying the people and the brand. Even Adam admitted that AI impacted dramatically their business. Selling UI templates in the current era is likely a dead end, even with a brand as strong as Tailwind. I hope Adam and the team are well and good with this decision. Tailwind is regularly debated here for various reasons, using it helped me have a better understanding of CSS, HTML and design, and made me a bette…
It’s far from dead. All of the AI models struggle with creativity and consistency. There’s always going to be a market for well designed UX.
Given the past 3 years, I will never understand how people can be so confident making statements like this
Re: Shopify acquires Tailwind
#223Earlier quoted context omitted.
Why would it die? How would it die? The vast majority of Tailwind is literally just shorthand for individual CSS properties.
Because what makes it useful , like media queries, can't be put in style attributes. Frankly this whole discussion is just as silly as claiming flex has nothing over table layout.
So at least that part is not so amazing.
Re: Shopify acquires Tailwind
#224This is beautiful. Art, even. And it speaks to my very soul.
Re: Shopify acquires Tailwind
#225Serious question: is there a need to reach for tailwind if you are building a new site? Won't using vanilla CSS while taking advantage of the latest features be pretty good, since humans are not manually making edits (which removes many of the pain points of maintaining CSS), while simplifying dependency and the build pipeline?
I only do front-end dev occasionally, but these are my 3 goto articles that make me lean towards not using Tailwind: 1: https://www.zolkos.com/2025/12/03/vanilla-css-is-all-you-nee... 2: https://www.joshwcomeau.com/css/subgrid/ 3: https://railsdesigner.com/custom-elements/ (more Rails specific)
I recently had to help out on a vibe coded project that inherited Tailwind (I think from Figma). It was a short assignment so I didn't dig that deep, but I don't understand the value prop of Tailwind. There was no obvious improvement over what I've been used to; in fact, it seemed a lot messier.
Re: Shopify acquires Tailwind
#226The ones that are successful provide other services that are still hard to do, like hosting at scale, or running the open source at scale.
Basically, running something at scale is what DevTools companies need to do to survive. Hosting the open source and the data is one type of running at scale, or helping companies run the open source in their own infrastructure is another way to help them run at scale.
Re: Shopify acquires Tailwind
#227I think the bigger issue is that AI is attacking the business model, not necessarily the product. Tailwind can still be massively popular, but if an AI agent can look at the docs/examples and generate 80% of what you'd otherwise pay for, that popularity doesn't translate into customers anymore. Feels like we'll see this happen to a lot of "we already figured this out for you" developer products.
> Feels like we'll see this happen to a lot of "we already figured this out for you" developer products. It has for me at least. I had a solo business for 10 years selling tech video courses (learning Flask, Docker, etc.). It was enough to pay the bills, but for the last few years it has nose dived. For 2026 YTD it has generated $20 / month in revenue but it costs almost triple that to host the courses so I've been l…
Re: Shopify acquires Tailwind
#228Earlier quoted context omitted.
IMO, Tailwind is just inline CSS with standardised defaults. I think it found its place because most React devs didn't want to bother with CSS
It is used because UI component frameworks make vanilla CSS an awkward an unnecessary tool (the Cascading part). CSS makes sense as designed for styling a document, but not so much for styling atomic components. If we were designing the web and CSS from scratch around the React model, CSS would not be made to cascade, because that is totally unnecessary and usually leads to more issues than it solves. Apart from them…
Re: Shopify acquires Tailwind
#229Serious question: is there a need to reach for tailwind if you are building a new site? Won't using vanilla CSS while taking advantage of the latest features be pretty good, since humans are not manually making edits (which removes many of the pain points of maintaining CSS), while simplifying dependency and the build pipeline?