- From: Christian Biesinger via GitHub <sysbot+gh@w3.org>
- Date: Mon, 16 Sep 2019 02:38:29 +0000
- To: public-css-archive@w3.org
cbiesinger has just created a new issue for https://github.com/w3c/csswg-drafts: == [css-flexbox] Clarify whether unresolvable percentages prevent stretching? == https://drafts.csswg.org/css-flexbox/#valdef-align-items-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 Combined with: https://drafts.csswg.org/css2/visudet.html#the-height-property > the height of the containing block is not specified explicitly (i.e., it depends on content height), and this element is not absolutely positioned, the value computes to 'auto'. So I just wanted to verify that the item should still stretch in a case like this: ```html <div style="display: flex;"> <div style="height: 100%; background: green"></div> <div style="height: 200px;"></div> <div> ``` Note that neither Chrome nor Firefox currently stretch the item. @dholbert @fantasai @tabatkins @davidsgrogan Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/4312 using your GitHub account
Received on Monday, 16 September 2019 02:38:30 UTC