Skip to content

Commit 41643e2

Browse files
authored
Added Flexbox
1 parent 7284634 commit 41643e2

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

readme.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ If you have a bug to report about the [pretty CSS Cheat Sheet](http://adam-marsd
1313
* [Background](https://github.com/AdamMarsden/css-cheat-sheet#background)
1414
* [Box properties](https://github.com/AdamMarsden/css-cheat-sheet#box-properties)
1515
* [List Styling](https://github.com/AdamMarsden/css-cheat-sheet#list-styling)
16+
* [Flexbox](https://github.com/AdamMarsden/css-cheat-sheet#flexbox)
1617

1718

1819
### Selectors
@@ -121,6 +122,8 @@ Background Attachment `background-attachment: scroll | fixed | local | initial |
121122

122123
### Box properties
123124

125+
Box Sizing `box-sizing: border-box | content-box`
126+
124127
Margin `margin: 2px 4px 6px 8px | 0 auto`
125128

126129
Padding `padding: 2px 4px 6px 8px`
@@ -139,6 +142,28 @@ List Position `list-style-position: inside | outside`
139142

140143
List Image `list-style-image: url();`
141144

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+
142167
## Notes
143168

144169
Built & Maintained by [Adam Marsden](https://twitter.com/AdamMarsdenUK)

0 commit comments

Comments
 (0)