|
Posted by eyal.herlin on 02/21/07 11:01
thanks for your points steve.
the code looks as it does due to both simplicity and the fact that it
was taken from an xsl source.
your final solution is the one i am trying to avoid since it would
require programming to change between 30%,* and *,30% depending on the
language used (the language can be changed in the application i am
writing).
On Feb 21, 12:51 pm, "Steve Pugh" <steve.gru...@gmail.com> wrote:
> 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]
|