Link to home
Start Free TrialLog in
Avatar of java_kevin
java_kevin

asked on

frames without border

may i know what does each of these do?

<FRAMESET ...
1) frameborder="0"

2) framespacing="0"

3) border="0">

<FRAME SRC="robmenu.htm" NAME="robmenu"...

4) MARGINWIDTH=10

5) MARGINHEIGHT=0

6) NORESIZE

7) frameborder="0"

8)framespacing="0">
ASKER CERTIFIED SOLUTION
Avatar of Christian_Wenz
Christian_Wenz

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of java_kevin
java_kevin

ASKER

Then do I need to include the border=0 etc inside the frame src?

Is the full name border=0 or frameborder?
n the noresize doesn't need any =??
(1) usually, you don't have to include border=0 in the frame tag - but I always do that, maybe some alternative browser needs it.
(2) border = Microsoft syntax; frameborder = Netscape syntax, so you need both
(3) exactly, you just need NORESIZE
So it's safer to
<frameset frameborder (netscape) =0 broder (MIE) =0>
<frame frameborder=0 ... >

to be on the safe side...
exactly. to be on the _very_ safe side, do also include FRAMESPACING="0" in the <FRAMESET> tag
thanks for being patient even when we are just commenting.

so, the framespacing is MS, frameborder is NS. then border?
frameborder refers to the "3d border" of a frame in IE, whereas framespacing defines the distance between two frames (so there may be a distance between two frames in IE that doesn'T look like this bold 3d border line. border is NS-specific,