Forum Moderators: open
In NN 4.08 and 4.78, both rows have the same height (half the screen height).
How can I make NN4 show what IE shows?
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"><html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta name="generator" content="NoteTab Pro">
<title>Test Showing NN4 Row Spacing Bug</title>
<style media=screen type="text/css">
.short {height: 50px; background-color: #00ccff; vertical-align: middle;}
.remain {background-color: #00cccc; vertical-align: middle;}
</style>
</head>
<body>
<h2>Test Showing NN4 Row Spacing Bug</h2>
<table border=0 cellpadding=0 cellspacing=0 width=100% height=90%>
<tr>
<td class=short>
Row 1 -- Should be 50 px high
</td>
<tr>
<td class=remain>
Row 2 -- Should be the remaining vertical space
</td>
</tr>
</table>
</body>
</html>
So the only fix I know of for NN4 is to include an invisible gif, sized to the height you want. If you're trying to maintain a "one full screen" layout across all monitors, this will probably get into using javascript to write the image sizes. Nasty stuff.
If anyone has kinder, gentler solution, I'd love to hear it.