Re: [csswg-drafts] [css-multicol] Shouldn't column-fill: auto take min-height into account?

If min-height is large enough to fit all column content, I too think it makes sense to disable balancing if column-fill is auto. One complication here, though, is that we still need to resort to balancing, if it turns out that min-height isn't large enough. The demo above is a good example.

Or this:
```
<p>There should be a green square below.</p>
<div style="width:300px; columns:3; column-gap:0; column-fill:auto; min-height:200px;">
  <div style="height:900px; background:green;"></div>
</div>
```

Test for min-height that's large enough (failing in all browsers, I guess, but it's the spec change we'd want):
```
<p>There should be a green square below.</p>
<div style="width:300px; columns:3; column-gap:0; column-fill:auto; min-height:200px;">
  <div style="height:400px; background:green;"></div>
</div>
```

-- 
GitHub Notification of comment by mstensho
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3064#issuecomment-430561566 using your GitHub account

Received on Wednesday, 17 October 2018 09:40:44 UTC