Description
Are there any plans to specify calc
behavior for widths and heights in table layout?
Implementations varies across browsers (http://jsbin.com/juqafi/1/edit?html,css,output)
Given the complexities of width and height calculations on table cells and table elements, math expressions involving percentages for widths and heights on table columns, table column groups, table rows, table row groups, and table cells in both auto and fixed layout tables MAY be treated as if auto had been specified.
I suspect the complexity of the math grows when it comes to mix unit (personally, I feel it's just a set of mathematical equations, to be solved in not more sophisticated way that sizing algorithm for Grid Layout).
However, I would say that expressions like:
calc(10% + 20%)
http://jsbin.com/juqafi/1/edit?html,css,outputcalc(100%/7)
https://bugzilla.mozilla.org/show_bug.cgi?id=957915
Should be really easy to compute, resolve, and apply.