Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Are CSS Grids any good? Re: Are CSS Grids any good?

#120726
David_Leitch
Participant

I’ve been using Chris Coyier’s [Don’t Overthink It Grids](https://css-tricks.com/dont-overthink-it-gridshttps://css-tricks.com/dont-overthink-it-grids”), with Matt Berridge’s [modification](https://css-tricks.com/dont-overthink-it-grids/#comment-187333https://css-tricks.com/dont-overthink-it-grids/#comment-187333”). It’s lightweight, simple to implement and really effective. In addition, I use

then

.container{
@extend .grid;
//additional styling
}

.content{
@extend .col-1-2;
@extend [class*=’col-‘];
//additional styling
}

..using Sass, as this completely takes presentation completely out of the markup.