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!

borders

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
My web site is 900 px wide. I would like to place a black border around the entire thing.

All the pages are divided into three frames. Does anyone What is the best way to do this??

can I somehow place the entire thing inside a table and put a border on the table???
 
Try this for example:

<html>
<head>
<title>My Page</title>
</head>
<frameset rows='*,600,*' framespacing=0 border=0 frameborder=0>
<frame name='top' src='empty.htm' scrolling=&quot;no&quot;>
<frameset cols='*,900,*' framespacing=0 border=0 frameborder=0>
<frame name='left' src='empty.htm' scrolling='no'>
<frame name='content' noresize src='main.htm' scrolling='no' style=&quot;border: 5px solid black;&quot;>
<frame name='right' src='empty.htm' scrolling='no'>
</frameset>
<frame name='bottom' src='empty.htm' scrolling='no'>
</frameset>
</html>

This should work..... empty.htm should be a blanc html-file, with only a color.

HTH,

Quasibobo Don't eat yellow snow!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top