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

setting absolute limits

Status
Not open for further replies.

bch33

Technical User
Oct 13, 2001
151
US
Is there a short code that sets a web site to have absolute limits when sizing the web page----for people who have their browser set with higher resolutions
(instead of using a percent of the page)

Thanks,
bch
 
width = 80px sets the width of an element to 80pixels
Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
to set the whole page to a size, try a div:

<body>
<div style=&quot;width:600px;&quot;>
<!--body compent here-->
</div>
</body>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top