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

Frames Page 1

Status
Not open for further replies.

seanbo

Programmer
Jun 6, 2003
407
GB
I want to create a frames page that is split into three vertical columns. the middle page should be 760px wide. the left and right pages should be equal in size to one another (so the middle page is dead center). how can i do this?

____________________________________________________
If you like a post, show you care by giving it a <censored>.
 
<html>
<head>
<title>My Frames Page</title>
</head>

<frameset cols=&quot;*,760,*&quot;>
<frame src=&quot;leftColumn.html&quot;>
<frame src=&quot;mainPage.html&quot;>
<frame src=&quot;rightColumn.html&quot;>
</framset>
</html>

should do it. of course there are plenty of attributes you can add to the <frameset> and <frame> tags to get rid of borders, make them non-resizable, etc.

hope this helps,

ss...
 
you're the dude. nice handle mr squirrel.

____________________________________________________
If you like a post, show you care by giving it a <censored>.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top