5 Matching Annotations
- Jan 2019
- Jun 2018
-
-
f no flex-basis is specified, then the flex-basis falls back to the item’s width property. If no width is specified, then the flex-basis falls back to the computed width of the item’s contents.
key point!
-
- Oct 2016
-
brianyang.com brianyang.com
-
- browser prefixes broke things so now they're flags
- flexbox for 1 dimension
- grids for two dimension
-
- Mar 2016
-
www.w3.org www.w3.org
-
<!-- flex item: anonymous block box around inline content --> anonymous item 3
In this case, text nodes inside a
flex
element will automatically be wrapped in a block box, so:<div style="display:flex">Some text</div>
Is the same as writing
<div style="display:flex"><div>Some text</div></div>
-
- Feb 2016
-
jakearchibald.com jakearchibald.com
-
Good explanation of why flexbox is not always the answer.
-