File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ If you have a bug to report about the [pretty CSS Cheat Sheet](http://adam-marsd
13
13
* [ Background] ( https://github.com/AdamMarsden/css-cheat-sheet#background )
14
14
* [ Box properties] ( https://github.com/AdamMarsden/css-cheat-sheet#box-properties )
15
15
* [ List Styling] ( https://github.com/AdamMarsden/css-cheat-sheet#list-styling )
16
+ * [ Flexbox] ( https://github.com/AdamMarsden/css-cheat-sheet#flexbox )
16
17
17
18
18
19
### Selectors
@@ -121,6 +122,8 @@ Background Attachment `background-attachment: scroll | fixed | local | initial |
121
122
122
123
### Box properties
123
124
125
+ Box Sizing ` box-sizing: border-box | content-box `
126
+
124
127
Margin ` margin: 2px 4px 6px 8px | 0 auto `
125
128
126
129
Padding ` padding: 2px 4px 6px 8px `
@@ -139,6 +142,28 @@ List Position `list-style-position: inside | outside`
139
142
140
143
List Image ` list-style-image: url(); `
141
144
145
+ ### Flexbox
146
+
147
+ Flex Direction ` flex-direction: row | row-reverse | column | column-reverse `
148
+
149
+ Flex Wrap ` flex-wrap: nowrap | wrap | wrap-reverse `
150
+
151
+ Justify Content ` justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly `
152
+
153
+ Align Items ` align-items: flex-start | flex-end | center | baseline | stretch `
154
+
155
+ Align Content ` align-content: flex-start | flex-end | center | space-between | space-around | stretch `
156
+
157
+ Order ` order: 0 `
158
+
159
+ Flex Grow ` flex-grow: 0 `
160
+
161
+ Flex Shrink ` flex-shrink: 1 `
162
+
163
+ Flex Basis ` flex-basis: 3px | auto `
164
+
165
+ Align Self ` align-self: auto | flex-start | flex-end | center | baseline | stretch `
166
+
142
167
## Notes
143
168
144
169
Built & Maintained by [ Adam Marsden] ( https://twitter.com/AdamMarsdenUK )
You can’t perform that action at this time.
0 commit comments