PDA

Click to See Complete Forum and Search --> : Browser client area dimensions


Michael
Sep 22nd, 2000, 08:27 AM
Can I define a table width/height to be the same as the visible client area of the browser?

My plan is to display a graphic right in the middle of the screen using something like

<table width="width of visible client area" height="height of visible client area">
<tr>
<td align=center valign=center>
<img src="graphicfile.jpg" blah blah blah>
</td>
</tr>

Or is there a better method of doing what I want?

Michael
Sep 23rd, 2000, 07:53 AM
What? No replies?

Come on, guys - you can do better than that!

noone
Sep 23rd, 2000, 03:17 PM
Wouldnt setting the width to 100% acheive the same effect?

Sep 23rd, 2000, 03:23 PM
Here you go...


<table width=100% height=100%>
<tr>
<td valign=center align=center>
<img src="vc++.jpg">
</td>
</tr>
</table>