Home › Forums › CSS › Are CSS Grids any good? › Re: Are CSS Grids any good?
January 11, 2013 at 11:35 pm
#120726
Participant
I’ve been using Chris Coyier’s [Don’t Overthink It Grids](https://css-tricks.com/dont-overthink-it-grids “https://css-tricks.com/dont-overthink-it-grids”), with Matt Berridge’s [modification](https://css-tricks.com/dont-overthink-it-grids/#comment-187333 “https://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.