Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

create a table that is 100% of screen

Status
Not open for further replies.

beefeater267

Programmer
Apr 6, 2005
79
0
0
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>
 
Remove this line:
<tr height="*">

And replace with

When you specify the table to be 100% and specify a particular height for another row, all other rows will autofit. No need to specify a variable.


I hope you find this post helpful.

Regards,

Mark
 
What are you seeing when you say it does not work?

I hope you find this post helpful.

Regards,

Mark
 
The table is not 100% the height of the screen. the top row looks about 80 px in height.. but, the bottom row is only as big as the text in it
 
First of if you try to validate that, it will tell you that <tr> has no height attribute.
That is because the dimension attributes only work in the <td> parts of the table.

Second why are you creating a layout with tables? Try <Div>'s with some CSS.
You really should read up on CSS. and Layout

----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
I agree with the above suggestions and would add this: To make your page behave the same in Mozilla-type browsers as in IE, I would add the following style:

Code:
body   {margin:0px; height:100%;}

This ensures that the table will fill 100% of the body height and not just 100% of the viewport height (the height of the browser display window). This eliminates the gap at the bottom and the vertical scrollbar in Firefox.
 
LittleDeveloper, I am lost at what you're trying to say. In Geckos table will not fill 100% of the viewport to begin with, because standards say that if parent container has not specifically set height, percentage height is equal to auto. So in the code above, table will not extend to the height of the viewport in Geckos. Your code would actually force that -- but not extending beyond the viewport. Or, better said, table would extend beyond the viewport, because it is the nature of tables to expand to fit the data. Body however would not extend beyond the viewport (you could see that if you apply a background color or something).

Incidentally, AFAIK not even that would work. Standard compliant browsers use html element as canvas, so you would need to set that one to 100% height in order to ensure height not reverting to auto. That would finally make what I describe happen. But I really don't know what you were trying to say.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top