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

HTML FRAMES

Status
Not open for further replies.

Rich25

Programmer
Feb 2, 2001
15
0
0
US
Does anyone know if it's possible to make the Frame Borders completely invisible? Please tell me how.

Thanks
 
What do you mean borders? Do you mean the scrollbar?

You can use something like this:

<FRAMESET COLS=&quot;15%,*&quot; FRAMEBORDER=&quot;0&quot; FRAMESPACING=&quot;0&quot; BORDER=&quot;0&quot;>
~Javrix

If you gave an infinate number of rednecks, an infinate number of shotguns to shoot at an infinate number of street signs, they would eventually write Romeo and Juliet in braille.
 
From the HTML Reference Library:

SCROLLING=&quot;yes|no|auto&quot;
This attribute can be used to control the appearance of any scroll bars that may appear as a result of the frame contents being too much to display in the set pane. Using &quot;no&quot; may be dangerous, because the HTML author cannot know the resolution/display window size of the client browser and so information may not be displayable
 
Rich,

this (just an example):

<FRAMESET ROWS=&quot;100,*&quot; BORDER=&quot;0&quot; FRAMEBORDER=&quot;0&quot; FRAMESPACING=&quot;0&quot;>

should get rid of every sign of frame borders.
Scrolling is a different matter, but that one is adressed by the other posts.

Good luck,
Ronald.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top