Oliver wrote:[color=blue]
>
> Ståle Sæbøe schrieb:[color=green]
> > Oliver wrote:
> >[color=darkred]
> >> Hi guys,
> >> i stumbled over another problem that i can't figure out.
> >> Firefox is showing me the table how i expected it and IE6.0 doesn't do
> >> me good.
> >>
> >>
http://www.twistedeyes.com/temp/test/main2.html
> >>
> >> Just have a look.
> >>
> >> What's the deal with it?
> >>
> >> Thanks for any help with it.[/color]
> >
> > Your main problem is that you are using a table for something it was not
> > designed to do.
> >
> > Second, IE6 does not properly support XHTML.
> >
> > Third your XML appears invalid.
> >
> > Fourth, user agents do render tables differently so they are ill suited
> > for "locked" designs like yours.
> >
> > My advice
> > Drop XHTML, it is of no use unless you really need to use XML. Use HTML
> > 401 strict or even transitional.
> > Drop the table scheme. Using absolute positioning you can achieve your
> > effect far more easy with a <div> element.
> >
> > BTW I like the basketball effect :)[/color]
>
> OK!
> So i did drop the idea of using XML, don't know why i wanted it there,
> maybe i just thought trying the newest stuff.
> So i moved to HTML 4.01 transitional. Changed the code and now it's
> valid HTML 4.01 and CSS Code.
> Next thing i'll try is with div tags and absolute positioning. Hope that
> does help me, as i need these tables in different sizes and positions.
> thanks for your help.
> Cheers[/color]
Actually, you should avoid absolute positioning. You should use
relative positioning so that the page will look okay for browser
windows that are not maximized and on systems that have fewer
pixels per screen.
--
David E. Ross
<URL:http://www.rossde.com/>
I use Mozilla as my Web browser because I want a browser that
complies with Web standards. See <URL:http://www.mozilla.org/>.