My current issue involves using a table to present information. While resizing the window, I noticed that the columns in the table were overlapping. Below is the code snippet:
<table style="width:100%;table-layout:fixed">
<tr style="border-bottom-style: none">
<td>ID</td>
<td>postalAddress</td>
<td>emailAddress</td>
</tr>
<tr style="border-bottom-style: none">
<td>123</td>
<td>1234,west street</td>
<td><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="2f5c4e425f434a1e6f48424e4643014c4042">[email protected]</a></td>
</tr>
</table>
Although the table displays the information correctly, when the window is minimized, the emailAddress column overlaps with the postalAddress column. Are there any additional CSS properties that can be added to prevent column overlap?