tpeck
11-08-2011, 02:03 PM
I've pared this down a lot to show the difference in height of the rows in IE and Firefox.
Why does Firefox stretch the height so much? Chrome and IE display nice narrow rows - which is what I require.
Can it be fixed for FF?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Side Menu</title>
<style>
body {margin:0;}
td {
font-family: Arial, Helvetica;
font-size:12px;
color: #000000
}
.SideMenu {
font-family : Arial;
font-size : 10px;
font-weight: bold;
font-style: normal;
color: black;
text-decoration: none
}
</style>
</head>
<body>
<table border="1" width="100%" cellspacing="0" style="border-collapse: collapse" cellpadding="0">
<tr>
<td nowrap>
<table border="0" cellpadding="0" style="border-collapse: collapse">
<tr>
<td nowrap width="10"> </td>
<td nowrap width="130"><a target="_parent" href="one.html">
<p class="SideMenu">ITEM 1</p>
</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td nowrap>
<table border="0" cellpadding="0" style="border-collapse: collapse">
<tr>
<td nowrap width="10"> </td>
<td nowrap width="130"><a target="_parent" href="two.html">
<p class="SideMenu">ITEM 2</p>
</a></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Why does Firefox stretch the height so much? Chrome and IE display nice narrow rows - which is what I require.
Can it be fixed for FF?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Side Menu</title>
<style>
body {margin:0;}
td {
font-family: Arial, Helvetica;
font-size:12px;
color: #000000
}
.SideMenu {
font-family : Arial;
font-size : 10px;
font-weight: bold;
font-style: normal;
color: black;
text-decoration: none
}
</style>
</head>
<body>
<table border="1" width="100%" cellspacing="0" style="border-collapse: collapse" cellpadding="0">
<tr>
<td nowrap>
<table border="0" cellpadding="0" style="border-collapse: collapse">
<tr>
<td nowrap width="10"> </td>
<td nowrap width="130"><a target="_parent" href="one.html">
<p class="SideMenu">ITEM 1</p>
</a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td nowrap>
<table border="0" cellpadding="0" style="border-collapse: collapse">
<tr>
<td nowrap width="10"> </td>
<td nowrap width="130"><a target="_parent" href="two.html">
<p class="SideMenu">ITEM 2</p>
</a></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>