Why the Bootstrap 3 Grid Works (2013)
31–40 of 91 posts
Re: Why the Bootstrap 3 Grid Works (2013)
#32I came up with this (in relation to Bootstrap) in 2011: http://csswizardry.com/2011/08/building-better-grid-systems/ This then became the basis for CSS Wizardry Grids: http://csswizardry.com/2013/02/introducing-csswizardry-grids...
Re: Why the Bootstrap 3 Grid Works (2013)
#33What to do if you need columns' sizes to be e.g. 7.5 and 4.5 ?
.make-sm-column(7.5) and .make-sm-column(4.5).
Done.
Re: Why the Bootstrap 3 Grid Works (2013)
#34I can't help but feel bad for people who worry about this kind of thing.
Indeed. I mean I love grids, but only as a tool in architecture and design. Why some people see the need to transfer them programatically onto their CSS---when regular CSS with media queries will do just fine---is beyond me.
Re: Why the Bootstrap 3 Grid Works (2013)
#35What if you wanted the gutter between columns to be the same width as the padding to the edge of the screen? E.g. in the "Columns" screenshot, gutter = 30px, but screen edge padding = 15px. How would I achieve the same value for both? (I'm not a Bootstrap user.)
Re: Why the Bootstrap 3 Grid Works (2013)
#36Nice and helpful diagrams, although IMHO explanation would be much clearer if he used the common CSS terminology, like floats instead of things like "positioned left/right". If I haven't already know how pull-* classes work internally I'm not sure if I'd able to follow through.
Re: Why the Bootstrap 3 Grid Works (2013)
#37What if you wanted the gutter between columns to be the same width as the padding to the edge of the screen? E.g. in the "Columns" screenshot, gutter = 30px, but screen edge padding = 15px. How would I achieve the same value for both? (I'm not a Bootstrap user.)
Re: Why the Bootstrap 3 Grid Works (2013)
#38Re: Why the Bootstrap 3 Grid Works (2013)
#39What 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?
Re: Why the Bootstrap 3 Grid Works (2013)
#40For lightweight grids that support dynamically sized containers, masonry was great. But there a ton of issues with keeping the content centered when the container changes size.
We dealt with this by using inline-blocked elements with tex-align: center, then appending invisible elements to maintain an apparent left-oriented grid: https://github.com/hangify/Central