My current approach involves utilizing a table to showcase a specific dataset. Below is the HTML code I have implemented:
<table border="1" cellspacing="0" cellpadding="0" style="width: 780px;">
<tbody>
<tr>
<td style="width: 780px; height: 25px;">
<pre width='100' style='width: 780px; word-wrap: break-word;'>
Insert data here.....
</pre>
</td>
</tr>
<tr>
<td style="width: 780px; height: 25px;">
<pre width='100' style='width: 780px; word-wrap: break-word;'>
Insert data here.....
</pre>
</td>
</tr>
</tbody>
</table>
The table functions properly in Firefox, Safari, and IE8. However, issues arise with compatibility in IE7 and IE6 since the table expands off-screen horizontally (exceeding the x-axis). Are there any workarounds or solutions available?
Screenshots showcasing the problem on IE6 using IETester: