Skip to content

Commit

Permalink
flexbox readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
kristianmandrup committed Aug 28, 2012
1 parent ba8e7bb commit 0ffc5d9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Expand Up @@ -62,6 +62,17 @@ DEFAULTS = {
} }
``` ```


Note:
Flexbox comes in different syntaxes as described [here](http://css-tricks.com/old-flexbox-and-new-flexbox/). The latest `flex-` syntax is only supported by Chrome 21+ as shown [here](http://caniuse.com/flexbox). Hence you need fallback in your CSS:

```css
selector
{ display: flex }

.no-flexbox selector
{ display: box }
```

*Flexbox Articles* *Flexbox Articles*


* [Flexbox quick guide](http://www.html5rocks.com/en/tutorials/flexbox/quick/) * [Flexbox quick guide](http://www.html5rocks.com/en/tutorials/flexbox/quick/)
Expand Down

0 comments on commit 0ffc5d9

Please sign in to comment.