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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

webpage size automatically stretchs along.............

Status
Not open for further replies.

696

Technical User
May 1, 2004
1
CA
can any one plz tell me info about a webpage size automatically stretchs along with the size of a window ?
like this site if you go to that site and change the size of your explorer window the site adjusts itself.

i already have a website , and i would like to add this code in it.
any help is greatly appreciated.
 
It's just a table. If you create a table to hold your content and set the height and width to 100%, it will resize itself to suit the window.
Code:
<table height="100%" width="100%">
<tr>
<td align="center" valign="middle">
Your page stuff
</td>
</tr>
</table>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top