|
-
Sep 22nd, 2000, 08:27 AM
#1
Thread Starter
Lively Member
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?
-
Sep 23rd, 2000, 07:53 AM
#2
Thread Starter
Lively Member
What? No replies?
Come on, guys - you can do better than that!
-
Sep 23rd, 2000, 03:17 PM
#3
Hyperactive Member
Wouldnt setting the width to 100% acheive the same effect?
"People who think they know everything are a great annoyance to those of us who do."
-
Sep 23rd, 2000, 03:23 PM
#4
Here you go...
Code:
<table width=100% height=100%>
<tr>
<td valign=center align=center>
<img src="vc++.jpg">
</td>
</tr>
</table>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|