Can anyone suggest why the table in the page at formats as I want (cells correctly aligned under their header) in Internet Explorer and Edge, but not in Firefox or Chrome (where the data rows are all compressed under the first column header), and suggest how to get the desired result in all browsers? - Make a selection in the righthand dropdown list to see some data. The HTML and javascript are actually generated in Microsoft Access.
The code is essentially:
The code is essentially:
Code:
<table border='1' bordercolor='#CCCCCC' cellspacing='0' style="width:100%">
<tr>
<td style="width:6%">Date due</td>
<td style="width:14%">Responsible</td>
<td style="width:30%">Action</td>
<td style="width:30%">Source</td>
<td style="width:20%">History</td>
</tr>
<tr>
<td valign='top' style='background-color:red'><font color='white'>30 dec 2017 (662)</font></td>
<td valign='top'><font color='black'>First name</font></td>
<td valign='top'><font color='black'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ut purus nunc.</font></td>
<td valign='top'><font color='black'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ut purus nunc.<hr>Response: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ut purus nunc..</font></td>
<td valign='top'><font color='black'>Toezegging gedaan 30 jun 2016</font></td>
</tr>
.
.
.
</table>