Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q2045 How can I completely hide a frame and make it unopenable?

You are here: irt.org | FAQ | HTML | Q2045 [ previous next ]

Even if you set the frame's width to 0%, and the frame border and frame spacing to 0 you will still get a small amount of the frame showing. It is also possible to widen this frame up. You need to make sure it can't be resized, by adding:

<FRAMESET COLS="100%,*" FRAMEBORDER=0 FRAMESPACING=0>
	<FRAME SRC="home.htm" NAME="main" NORESIZE>
	<FRAME SRC="secret.htm" NAME="hidden" NORESIZE>
</FRAMESET>

Feedback on 'Q2045 How can I completely hide a frame and make it unopenable?'

©2018 Martin Webb