From 0b892f71427a729c270f89cba8f8004fcbce0a3e Mon Sep 17 00:00:00 2001 From: Christopher Chedeau Date: Sun, 22 Feb 2015 09:25:54 -0800 Subject: [PATCH] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c9696f43..a8529cbe 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ flexDirection | 'column', 'row' justifyContent | 'flex-start', 'center', 'flex-end', 'space-between', 'space-around' alignItems, alignSelf | 'flex-start', 'center', 'flex-end', 'stretch' flex | positive number +flexWrap | 'wrap', 'nowrap' position | 'relative', 'absolute' - `inherit` value is not implemented because it's a way to disambiguate between multiple colliding rules. This should be done in a pre-processing step, not in the actual layout algorithm. @@ -62,14 +63,15 @@ Since we are only using flexbox, we can use defaults that are much more sensible div, span { box-sizing: border-box; position: relative; - border: 0 solid black; - margin: 0; - padding: 0; display: flex; flex-direction: column; align-items: stretch; flex-shrink: 0; + + border: 0 solid black; + margin: 0; + padding: 0; } ```