You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 24, 2020. It is now read-only.
Created by Tracey Holinka (https://traceyholinka.com/) April 2017.
5
+
Use PostCSS custom properties to create the most common design grids.
6
+
7
+
CSS3 Grid is supported by:
8
+
9
+
* Chrome 57+
10
+
* Firefox 53+
11
+
* IE 10+
12
+
* IOS Safari 10.3+
13
+
* Android Chrome 57+
14
+
15
+
IE10 & IE11 does not have a gap property so the gaps are represented by a column. For example a 4 column mobile grid having 3 column gaps is represent by a total of 7 columns.
16
+
17
+
1 column 1 gap 1 column 1 gap 1 column 1 gap 1 column
18
+
19
+
To represent 4 columns with whitespace gaps:
20
+
21
+
* column 1: grid-column: 1
22
+
* column 2: grid-column: 3
23
+
* column 3: grid-column: 5
24
+
* column 4: grid-column: 7
25
+
26
+
This grid is fully responsive by using <code>fr</code> for columns while gaps are static. Mobile view are a 4 column grid. Tablet and above is a 12 column grid.
0 commit comments