[quote="zcorpan"]How is this different from:[code]<!DOCTYPE html>
<head>
<title>Document with content specified in frameset</title>
</head>
<body>
<iframe src="menu.html"></iframe>
Content Content Content Content Content Content Content Content Content
Content Content Content Content Content Content Content Content Content
</body>[/code]...?[/quote]
What's your solution for this?
<HEAD>
<title>Document with multiple frames</title>
</HEAD>
<FRAMESET border="0" framespacing="0" frameborder="0" COLS="11%,*,11%">
<FRAME FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SRC="./leftmenu.htm">
<FRAMESET border="0" framespacing="0" frameborder="0" ROWS="12,145,*,30,35">
<FRAME FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SRC="./index0.htm">
<FRAMESET border="0" framespacing="0" frameborder="0" COLS="*,800,*">
<FRAME FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SRC="./spacer.htm">
<FRAME FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SRC="./index1.htm">
<FRAME FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SRC="./spacer.htm">
</FRAMESET>
<FRAME FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SRC="./index2.htm" NAME="mainframe">
<FRAME FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SRC="./index3.htm">
<FRAME FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SRC="./index4.htm">
</FRAMESET>
<FRAME FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0" SRC="./rightmenu.htm">
<NOFRAMES>
<BODY>
<P>
Om deze pagina te kunnen bekijken, moet je over een browser beschikken die frames
ondersteunt, bijvoorbeeld Mozilla, Firefox of Microsoft Internet Explorer. (Left over for you to translate..
)
</P>
</BODY>
</NOFRAMES>
</FRAMESET>
</HTML>
I know that "FRAMEBORDER="0" MARGINWIDTH="0" MARGINHEIGHT="0"" is not confirm specs HTML 4.x, but this is the only solution to get frames without a frame, ie when set border to 0 you still get an ugly white border which doesn't fill up with the background color as it should be. This is on one side a bug in the specs and on the other side a much wanted extension. Only this part doesn't come through W3C, the rest of my site (still not public due to get all legal) is validated to be correct html. The most surprising part is that up to now every browser just do what I wanted it to do, even its not in the specs, so much for validating...