| background-color: lightgrey; |
| -webkit-align-items: flex-start; |
| This example is from the spec. There should be four flex items. Anonymous item 3 shouldn't have |
| a green border because the anonymous block is the flex item. |
| <div id="flexbox" style="display: -webkit-flex"> |
| <!-- flex item: block child --> |
| <div id="item1">block</div> |
| <!-- flex item: floated element; floating is ignored --> |
| <div id="item2" style="float: left;">float</div> |
| <!-- flex item: anonymous block box around inline content --> |
| <!-- flex item: inline child --> |
| <!-- flex items do not split around blocks --> |
| <div id=not-an-item>item 4</div> |