This repository was archived by the owner on Dec 11, 2021. It is now read-only.
This repository was archived by the owner on Dec 11, 2021. It is now read-only.
Create a Grid System #5
Open
Description
Items to consider:
- Since we're right now potentially supporting IE8 and some other older versions of IE, Flexbox solutions are probably impossible at this time. :-(
- Do we want to have a set number of columns (10, 16 etc), or do we want to allow for users to specify the number of columns and gutter widths? This makes everything a bit more flexible for a user to apply to their design, but potentially could complicate things. ( No we want a flexible grid builder )
- Do we want the option to specify if an element to remain in a grid format at the mobile/tablet width, or if it should switch to 100% width.
- Do we want to add styling that allow you to offset a column?
Update 3/29/15
Summing up the issue so far
- The grid will be an optional module ( other components except for perhaps full page layout stuff when we get there ) will not depend on the grid.
- Do we want to just make susy a dev dependency and implement it through our builder, or make our own from scratch? Benefits of going with something like susy is that the grid can easily be adapted to the needs of a project.
- @cbracco grid proposal https://gist.github.com/arschmitz/39fd81718bb3b3829124
- @jslegers grid proposal https://gist.github.com/arschmitz/2ce0b464ed5dab2d283f
- Should we look at
display:grid
, and consider only supporting layouts possible with what will be the grid standard that way in the future we could potentially drop the grid component all together? ( IE only right now )