Why the Bootstrap 3 Grid Works (2013)
21–30 of 91 posts
Re: Why the Bootstrap 3 Grid Works (2013)
#22I can't help but feel bad for people who worry about this kind of thing.
Re: Why the Bootstrap 3 Grid Works (2013)
#23Earlier quoted context omitted.
Can't you just not use a column? or not use a container at all? I think the second would be preferred way according to his post.
Isn't he saying that you should always use a container?
Re: Why the Bootstrap 3 Grid Works (2013)
#24/personal opinion
Re: Why the Bootstrap 3 Grid Works (2013)
#25I've also been looking into http://purecss.io/ since it's grid is similar but the CSS package is lighter.
[0] - http://neat.bourbon.io/
Re: Why the Bootstrap 3 Grid Works (2013)
#26Re: Why the Bootstrap 3 Grid Works (2013)
#27Is the Bootstrap 3 grid better than the one from PureCSS? I'm building a thing where I use PureCSS only for the grid so I'm wondering if I should replace it with Bootstrap.
Re: Why the Bootstrap 3 Grid Works (2013)
#28Bootstrap's grid really is nice. I really prefer Bootstraps grid over something like Bourboun's Neat grid system[0] where I have to pollute my CSS with include statements. I've also been looking into http://purecss.io/ since it's grid is similar but the CSS package is lighter. [0] - http://neat.bourbon.io/
What about creating silent classes for the column sizes you use and `@extend`ing those classes?
%three-columns {
@include span-columns(3);
}
.sidebar {
@extend %three-columns;
}
.menu {
@extend %three-columns;
background-color: #facade;
}Re: Why the Bootstrap 3 Grid Works (2013)
#29Re: Why the Bootstrap 3 Grid Works (2013)
#30Bootstrap's grid really is nice. I really prefer Bootstraps grid over something like Bourboun's Neat grid system[0] where I have to pollute my CSS with include statements. I've also been looking into http://purecss.io/ since it's grid is similar but the CSS package is lighter. [0] - http://neat.bourbon.io/