beefeater267
Programmer
- Apr 6, 2005
- 79
hi,
i'm trying to create web app and am having problems laying out a HTML table in the default.aspx page. Can anyone help?
basically, i'd like a table the ENTIRE height of the screen (100%) and 725 pixels wide. Essentially, I need the top 80 pixels of the table to say header and the bottom X pixels to be my content TD.
I tried below.. but it didn't work. seems so simple.
<html xmlns=" >
<head runat="server">
<titlemyPage</title>
<link href="CSS/Style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="frmMain" runat="server">
<table height="100%" bgcolor=green>
<tr height="80px">
<td>header</td>
</tr>
<tr height="*">
<td>
content here
</td>
</tr>
</table>
</form>
</body>
</html>
i'm trying to create web app and am having problems laying out a HTML table in the default.aspx page. Can anyone help?
basically, i'd like a table the ENTIRE height of the screen (100%) and 725 pixels wide. Essentially, I need the top 80 pixels of the table to say header and the bottom X pixels to be my content TD.
I tried below.. but it didn't work. seems so simple.
<html xmlns=" >
<head runat="server">
<titlemyPage</title>
<link href="CSS/Style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="frmMain" runat="server">
<table height="100%" bgcolor=green>
<tr height="80px">
<td>header</td>
</tr>
<tr height="*">
<td>
content here
</td>
</tr>
</table>
</form>
</body>
</html>