TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: CSS frameworks, older browsers, CSS Grid – what do you use and why?

7 pointsby interfacesketchabout 6 years ago
It&#x27;s 2019 and browser support for CSS Grid is strong (using the latest browser versions). Many supporters of CSS Grid suggest that CSS frameworks are no longer necessary for layout if you only need to target modern browsers.<p>What&#x27;s your current state-of-play with CSS? Are still using CSS frameworks? Do you still need to support older browsers? Or have you ditched a framework and fully embraced CSS Grid?

3 comments

LarryMade2about 6 years ago
Don&#x27;t use grid, the main thing I&#x27;m working on has hand-made CSS (with a mobile first layout (with some sizing for larger display) <a href="https:&#x2F;&#x2F;doplaces.com" rel="nofollow">https:&#x2F;&#x2F;doplaces.com</a><p>On another I&#x27;m just getting into - working on a simple one&#x2F;two column thing (large screen two block columns, small screen goes to one some text&#x2F;image scaling).<p>I find a lot of CSS frameworks are over-engineered, and with addition of various modules and tools adding redundancy to a site&#x27;s CSS soup.<p>I can see a lot of refinement can be made by paring out CSS parts into several sub-classes and then mix them together in the element class assignment (I cant say all my stuff is like that yet, but that what I&#x27;m striving for.) I&#x27;m just getting into front-end so I&#x27;m learning as I go.
CM30about 6 years ago
Depends. If I&#x27;m working on a team project and others are using a framework, I won&#x27;t exactly tell them to stop using it. Similarly, if I&#x27;m lazy&#x2F;don&#x27;t want to worry about design, well Bootstrap will probably get me a nicer looking site than anything I&#x27;d be able to come up with on my own.<p>But if it&#x27;s possible, and there&#x27;s a designer willing to create designs for components, then I&#x27;ll use CSS Grid and Flexbox without a pre made framework.
markholmesabout 6 years ago
I&#x27;ve found that when you reach a certain degree of complexity in an application, a functional CSS library like Tachyons (<a href="http:&#x2F;&#x2F;tachyons.io&#x2F;" rel="nofollow">http:&#x2F;&#x2F;tachyons.io&#x2F;</a>) or Tailwind (<a href="https:&#x2F;&#x2F;tailwindcss.com&#x2F;docs&#x2F;what-is-tailwind&#x2F;" rel="nofollow">https:&#x2F;&#x2F;tailwindcss.com&#x2F;docs&#x2F;what-is-tailwind&#x2F;</a>) is the only sane choice.