RE: FRAMEBORDER attribute?

> From:	Gabriele Caniglia [SMTP:mailing.lists@garr.com]
> 
> Actually I can't understand the problem with the FRAMEBORDER 
> attribute, since it is part of HTML 4.01:
> 
> ><http://www.w3.org/TR/REC-html40/present/frames.html#adef-frameborder>
> >
> >frameborder = 1|0 [CN]
[DJW:]  
Only for frame, not for frameset.  Note, you should have been
trying to move away from frames since the 4.0 specification
was released.  Most of the longstanding sites already have.

This is valid:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
            "http://www.w3.org/TR/html4/frameset.dtd">
<title>test</title>
<frameset rows="35%,*">
<frame src="fred" frameborder="0">
<frame src="jim" frameborder="0">
</frameset>

-- 
--------------------------- DISCLAIMER ---------------------------------
Any views expressed in this message are those of the individual sender,
except where the sender specifically states them to be the views of BTS.

>  

Received on Thursday, 1 February 2001 06:48:45 UTC