Posted by Steve Pugh on 02/21/07 10:51
On Feb 21, 10:20 am, eyal.her...@gmail.com wrote:
> hi,
> i have the following demo code:
> <html>
> <head>
> </head>
Did you miss the mandatory <title> element out for the sake of
simplifying your example or is it also missing from your actual site?
> <frameset cols="30%,*">
> <frame src="">
> </frame>
Invalid in HTML and not recommended in XHTML. Try just <frame> for the
former and <frame /> for the latter.
> <frame src="">
> </frame>
> </frameset>
Did you miss the essential <noframes> element out for the sake of
simplifying your example or is it also missing from your actual site?
> </html>
>
> this would render as a 30% frame on the left and the rest in the right
> frame.
> my question is wether it is possible to use an html or css directive
> to make this frameset render from right to left (so the 30% frame is
> on the right).
<frameset cols="*,30%">
Steve
[Back to original message]
|