I'm really struggling to figure this out - the table functions perfectly on Firefox and IE, but not on Chrome.
Take a look at it:
On Chrome:
Here is the CSS for the table:
table {
padding: 24px;
margin: 0 auto;
width: 550px;
}
The specific styling for td#tadmin:
td#tabmin {
width: 30px;
height: auto;
float: left;
font-family: "Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 15px;
}
I've also tried to implement:
table-layout: fixed;
But unfortunately, it doesn't seem to work.
As I was requested, here's how I display the table in PHP using echo:
echo "<table style='padding: 24px; margin: 0 auto; width: 550px;'>".
"<tr>".
"<td id=tabmin >".
"<div class=tabminscale style=text-align:center;>"
.$row['min']."'"."</div>".
"</td>".
"<td id=tabcom >" .
"<div id=commentaires>"
$row['commentaire']."</br>".
"</td>".
"</tr>".
"</table>";