Having trouble with tables and trying to use percentages in the colspan attribute to split 2 cells evenly in a 3-cell table, but encountering a bug. This has caused all other colspans in the table to have no width and it's become a mess. I can't use percentages in the 3-cell row because it would result in an odd number. Here's the code snippet:
<table style="table-layout:fixed;" border="1" width="100%">
<tr>
<td colspan="100%">Notify</td>
</tr>
<tr>
<td colspan="25%">Store</td>
<td colspan="75%">Logo</td>
</tr>
<tr>
<td colspan="100%">Discount</td>
</tr>
<tr >
<td>Summer</td>
<td>Discounts</td>
<td>Fashion</td>
</tr>
<tr >
<td colspan="50%">News1</td>
<td colspan="50%">News2</td>
</tr>
<tr>
<td colspan="100%">News 3</td>
</tr>
<tr>
<td colspan="100%">News 4</td>
</tr>
</table>