Posted by Jonathan N. Little on 10/24/06 18:54
Ben C wrote:
> On 2006-10-24, Jonathan N. Little <lws4art@centralva.net> wrote:
>> John wrote:
>>
>>> Fair point. Actually both IE and FF are both forgiving (to me, at least)
>>> If so maybe you ought to see what a real web browser
>>>> does with your page and not depend of IE's interpretation.
>>> Real web browser? Since IE and FF take the lion share I'm just coding for
>>> them. It maybe that Opera etc may baulk at the code but I'll have to live
>>> with that.
>> Not with respect to your menu alignment via invalid TABLE element
>
> There's no TABLE element. Just display: table. How is it invalid?
Because the OP was not using "display: table: (which does not work in
IE) but *was* using a TABLE element and in a very invalid manner. His
markup was:
<table align="center">
<div id="navbar">
<ul>
<li><a href="home.shtml">Home</a></li>
<li><a href="flights.pl">Flights</a></li>
<li><a href="hotels.shtml">Hotels</a></li>
<li><a href="cars.shtml">Car Rental</a></li>
<li><a href="cruises.shtml">Cruises</a></li>
<li><a href="holidays.shtml">Holidays</a></li>
<li><a href="bargains.shtml">Bargains</a></li>
<li><a href="MyZampf.pl">MyZampf</a></li>
<li><a href="contact.shtml">Contact Us</a></li>
</ul>
</div>
</table>
And that was what I was addressing....
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|