What is the preferred method for a row that needs to span the entire width of the container? As in, without the 15px margin on the column? Just set the margins to 0px?
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.
Why the Bootstrap 3 Grid Works (2013)
11–20 of 91 posts
Re: Why the Bootstrap 3 Grid Works (2013)
#12Re: Why the Bootstrap 3 Grid Works (2013)
#13Re: Why the Bootstrap 3 Grid Works (2013)
#14My problem with the Bootstrap grid is the strange choice of breakpoints, especially on the smaller screensize end. It's way too complicated to alter the given breakpoints or add custom ones with Bootstrap. I'd rather use something like Susy for grids. Not so much more effort to set up, but much less limitations. Are you really all ok with Bootstrap's breakpoints?
Personally, I use the SASS build, include only the most basic parts (scaffolding, type, grid, ...), customise the hell out of the variables, and you'd never know it was bootstrap. For reference, http://www.recruiteasy.com.au is a bootstrap-based site, using standard breakpoints.
[1] http://getbootstrap.com/customize/
Re: Why the Bootstrap 3 Grid Works (2013)
#15This then became the basis for CSS Wizardry Grids: http://csswizardry.com/2013/02/introducing-csswizardry-grids...
Re: Why the Bootstrap 3 Grid Works (2013)
#16Wow - I wish I read this a year ago. Would've saved hours of frustration. My #1 gotcha was the issue where the page would allow horizontal scrolling with nothing on the sides. Turns out it was just because I hadn't properly added containers/rows.
[0]: https://www.ostraining.com/blog/coding/bootstrap-right-way/
Re: Why the Bootstrap 3 Grid Works (2013)
#17My problem with the Bootstrap grid is the strange choice of breakpoints, especially on the smaller screensize end. It's way too complicated to alter the given breakpoints or add custom ones with Bootstrap. I'd rather use something like Susy for grids. Not so much more effort to set up, but much less limitations. Are you really all ok with Bootstrap's breakpoints?
IMO the smallest (fluid) size kicks in too early, but it's not hard to customise it. You can download a customised build[1], or override the LESS[2] or SASS[3] variables and build it yourself or incorporate it into your asset pipeline. Personally, I use the SASS build, include only the most basic parts (scaffolding, type, grid, ...), customise the hell out of the variables, and you'd never know it was bootstrap. For…
Re: Why the Bootstrap 3 Grid Works (2013)
#18Re: Why the Bootstrap 3 Grid Works (2013)
#19What to do if you need columns' sizes to be e.g. 7.5 and 4.5 ?
Re: Why the Bootstrap 3 Grid Works (2013)
#20Is 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.