Click to See Complete Forum and Search --> : WC3 Frameset specifications


Motabobo
09-16-2003, 07:51 PM
Hi !

I have a frameset like this :
<FRAMESET cols="244,*" framespacing="0" frameborder="0" border="0">
<FRAME src="photo.asp" name="left" id="left" scrolling="no" noresize>
<FRAME name="content" scrolling="no" src="content.asp">
</FRAMESET>

Now, how can i have a borderless frameset if WC3 specifications tells me that border, frameborder and framespacing attributes can't be nested in a frameset tag ???

I tried putting them all for all the frame tags but that doesn't work.

Any idea ?
Thx

AdamGundry
09-17-2003, 11:07 AM
Only one of those attributes is relevant for frames, frameborder, and that is available on <frame> elements according to the specification. See http://www.w3.org/TR/html401/present/frames.html#h-16.2.2

Adam