- From: Alex Mogilevsky <alexmog@microsoft.com>
- Date: Wed, 26 May 2010 22:30:24 +0000
- To: www-style list <www-style@w3.org>, Tab Atkins Jr. <jackalmage@gmail.com>
- Message-ID: <5258A1A783764C478A36E2BC4A9C497E0AD2B8@tk5ex14mbxc105.redmond.corp.microsoft.co>
While we are discussing Flexbox in general, I'd like to resolve some very specific issues. These are issues to be specified regardless of other potential changes in the module.
* In reverse direction, what should "pack:start" do?
This combination has opposite effect in Mozilla and Webkit. Which is right?
.flexbox
{
display:box;
box-direction:reverse;
box-pack:start;
width:400px;
border:10px solid blue;
}
.flexbox > div
{
margin:5px;
border:medium solid black;
}
I prefer Mozilla behavior. It right-aligns by default when direction is reverse.
* How does max-height on items affect alignment and box height?
Consider this:
<div style="display:box">
<div style="height:100px">1</div>
<div style="max-height:50px">2</div>
<div style="height:100px">3</div>
</div>
What should the height of the Flexbox be? And heights of the items?
In Mozilla max-height on any items appears to affect all items. That looks like a bug to me.
* Where is the baseline of an inline-box?
Again, implementations differ. I am not sure I have a preference. Where should it be?
Attachments
- text/html attachment: reversepack.htm
- text/html attachment: alignmax.htm
- text/html attachment: flexbaseline.htm
Received on Wednesday, 26 May 2010 22:31:06 UTC