- From: François REMY via GitHub <sysbot+gh@w3.org>
- Date: Wed, 16 Jun 2021 23:52:34 +0000
- To: public-css-archive@w3.org
I did confirm that dating back to IE, percentages are only re-evaluated for cells that had grown as a result of row equalization. ``` <!doctype html> <table style="height: 100%;"> <td> <div style="height: 200%; background: yellow;">Will grow</div> </td> <td> X<br>X </td> </table> <hr style="margin-bottom: 50px"> <table style="height: 100%;"> <td> <div style="height: 200%; background: yellow;">Will grow</div> </td> <td> <big>X</big> </td> </table> <hr style="margin-bottom: 50px"> <table style="height: 100%;"> <td> <div style="height: 200%; background: yellow;">Will not grow</div> </td> <td> X </td> </table> ``` It is a bit crazy, but I will add this change to the spec. Thanks for the feedback on this! -- GitHub Notification of comment by FremyCompany Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/6380#issuecomment-862807675 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 16 June 2021 23:52:55 UTC