I use tables for generating simple horizontal graphs (for easy scaling).
I use colspanning to get exact overlapping (sometimes the cells overlap each other, but not in this example).
My issue ...
There once was a very handy construct: colspan='*' meaning "span this column and all the rest of the columns to its right in this table." The production now gives an error ...
I am replacing multiple TDs with a single TD and a colspan attribute.
However this renders completely differently.
I cannot see why <td></td><td></td> is different to <td colspan="2"></td>
My issue is that the sum ...