Is it time to ditch the design grid?
css-irl.info
Is it time to ditch the design grid?
1–10 of 31 posts
Re: Is it time to ditch the design grid?
#2Re: Is it time to ditch the design grid?
#3Re: Is it time to ditch the design grid?
#4Visually, the "no" grid website [0] just looked like a website created with CSS Grid. I was expecting some sort of design that would be different. Are we missing something? [0]: https://gridless.design
Re: Is it time to ditch the design grid?
#5Re: Is it time to ditch the design grid?
#6Visually, the "no" grid website [0] just looked like a website created with CSS Grid. I was expecting some sort of design that would be different. Are we missing something? [0]: https://gridless.design
I think the idea is not that the design is without a grid, but more on how it handles being resized. The video in the article does a good job of explaining it.
Re: Is it time to ditch the design grid?
#7It’s really hard to pull off fancier grid layouts on the web due to device shapes and scrolling, but the basic principle still applies: line things up, create order, don’t pick sizes willy-nilly (off topic: Willy Nilly must have been the Leroy Jenkins of his day)
Re: Is it time to ditch the design grid?
#8For example, Bootstrap and Bulma - two popular frameworks - use flexbox for layout, but have yet to incorporate CSS Grid.
The difficulty of CSS layout is a frequent criticism of CSS (and fair criticism), but now we have CSS Grid to make layout much easier, few people actually use it. As mentioned, CSS Grid has been supported by modern browsers for some time.
You don't actually need a CSS framework for layout if you adopt CSS Grid. But it does entail learning CSS Grid first - rather than rely on the CSS framework you're familiar with.
Re: Is it time to ditch the design grid?
#9As for layout frameworks, I tried to learn them, but as far as I could tell they simply made bad/half assed design faster and easier. For a laughable amount of time they assumed you were building a desktop size column-based layout that was supposed to shrink, and anything different didn't work. So I never used them. It's fine if you're not hoping to produce a good design and just ship something generic, but idk if anything really good has come from them.
Re: Is it time to ditch the design grid?
#10Visually, the "no" grid website [0] just looked like a website created with CSS Grid. I was expecting some sort of design that would be different. Are we missing something? [0]: https://gridless.design
Also from the article:
> Paradoxically, where CSS Grid shines is not only in building layouts that adhere to a strict design grid, but in baking flexibility into our components.