[csswg-drafts] [css-sizing][css-multicol] taking into account column-gap in min-content inline size

frivoal has just created a new issue for 
https://github.com/w3c/csswg-drafts:

== [css-sizing][css-multicol] taking into account column-gap in 
min-content inline size ==
https://drafts.csswg.org/css-sizing/#multicol-min-content says:

> 
The min-content inline size of a multi-column element with a computed 
column-width of auto is the largest min-content inline-size 
contribution of its contents multiplied by its column-count (treating 
auto as 1). 

Is that right? How about `column-gap`? Doesn't this make more sense?

> 
The min-content inline size of a multi-column element with a computed 
column-width of auto is the largest min-content inline-size 
contribution of its contents multiplied by its column-count (treating 
auto as 1), plus the column-gap multiplied by column-count minus 1.

Similarly, I think
> The min-content inline size of a multi-column element with a 
computed column-width not auto is the smaller of its column-width and 
the largest min-content inline-size contribution of its contents. 

should be

> The min-content inline size of a multi-column element with a 
computed column-width not auto is the smaller of its column-width and 
the largest min-content inline-size contribution of its contents, 
multiplied by by its column-count (treating auto as 1), plus the 
column-gap multiplied by column-count minus 1.


Please view or discuss this issue at 
https://github.com/w3c/csswg-drafts/issues/163 using your GitHub 
account

Received on Friday, 3 June 2016 06:38:45 UTC