- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Wed, 12 Feb 2025 09:23:11 +0000
- To: public-css-archive@w3.org
> so that it also affects intrinsic size contributions The implications seem wrong to me: ```html <!DOCTYPE html> <style>td div { float: left; width: 50px; height: 50px; }</style> <div style="display: inline-block; border: solid"> <col style="visibility: collapse"></col> <table cellspacing="0" cellpadding="0"> <td><div></div><div></div></td> <td><div></div><div></div></td> </table> </div> ``` Without collapsing, the max-content contribution of the table is 200px. If we shrink that to 100px because of the collapsed column, then the inline-block will be 100px wide. So when laying out the table, we will only have 100px of available space, each column will be 50px wide, and then we will remove the first one. So the result will be that: - The table will still be smaller (50px) than its intrinsic contribution (100px) - The 2nd column will be smaller than ideal, even though the inline-block could have been bigger. -- GitHub Notification of comment by Loirooriol Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/11408#issuecomment-2653101446 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 12 February 2025 09:23:12 UTC