[css-flexbox] Small editing fix for stretch under align-items

Hello, we found a small edit for 8.3 align-items, it currently reads:

     # Stretch: If the cross size property of the flex item computes to auto, and _either_ of the cross-axis margins are auto, the flex item is stretched

This should read:
    
    # Stretch: If the cross size property of the flex item computes to auto, and _neither_ of the cross-axis margins are auto, the flex item is stretched

Firefox and Chrome currently implement it this way and we are fixing a bug where we stretch all the time even with auto set and found this. 

Here is an example with the cross margin-top set to auto on one of the flex items but it doesn't stretch like that of the one without auto margins: http://jsfiddle.net/0dfdqL09/6/

Thanks,
Greg

Received on Tuesday, 30 September 2014 21:11:22 UTC