On 9/13/06, dev-tech-h...@lists.mozilla.org <
dev-tech-h...@lists.mozilla.org> wrote:
>
> Send dev-tech-html mailing list submissions to
> dev-te...@lists.mozilla.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://lists.mozilla.org/listinfo/dev-tech-html
> or, via email, send a message with subject or body 'help' to
> dev-tech-h...@lists.mozilla.org
>
> You can reach the person managing the list at
> dev-tech-...@lists.mozilla.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of dev-tech-html digest..."
>
>
> Today's Topics:
>
> 1. Invisible Links on a menu (jack...@gmail.com)
> 2. Re: Invisible Links on a menu (C A Upsdell)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: 12 Sep 2006 19:37:38 -0700
> From: "jack...@gmail.com" <jack...@gmail.com>
> Subject: Invisible Links on a menu
> To: dev-te...@lists.mozilla.org
> Message-ID: <1158115058.7...@h48g2000cwc.googlegroups.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Writing a CD menu, and none of the links in the "Click on one of the
> below" table show until after the link is clicked on. In IE, it shows
> fine.
> A typicle link is written as :
> <p><LI><a href="readme.txt" target="top"><u>ReadMe text
> file</u></a></p>
>
> Any ideas, please. I am completely new at this, so...
> Jack Ray
> Cincinnati, Ohio, USA
>
>
>
> ------------------------------
>
> Message: 2
> Date: Wed, 13 Sep 2006 00:08:46 -0400
> From: C A Upsdell <""cupsdell\"@nos...@upsdell.com">
> Subject: Re: Invisible Links on a menu
> To: dev-te...@lists.mozilla.org
> Message-ID: <7tmdnZSm7vTRGZrY...@mozilla.org>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> jack...@gmail.com wrote:
> > Writing a CD menu, and none of the links in the "Click on one of the
> > below" table show until after the link is clicked on. In IE, it shows
> > fine.
> > A typicle link is written as :
> > <p><LI><a href="readme.txt" target="top"><u>ReadMe text
> > file</u></a></p>
>
> You'll have to learn HTML a little better. An <LI> cannot be within a
> <P>. And you don't need <U> to create the underline, since being
> enclosed in an <A> will automatically do this.
>
> Check out the W3C site, www.w3.org, and look for the validators offered
> which you can use to determine if your code is valid, i.e. syntactically
> correct.
>
>
>
>
> ------------------------------
>
> _______________________________________________
> dev-tech-html mailing list
> dev-te...@lists.mozilla.org
> https://lists.mozilla.org/listinfo/dev-tech-html
>
>
> End of dev-tech-html Digest, Vol 5, Issue 1
> *******************************************
>
Because IE is more permissive on the syntax than Firefox, it doesn't
make this incorrect syntax correct.
I could also create broken HTML that Firefox accepts and wouldn't work
at all in Internet Explorer and your broken example will most likely not
work in internet Explorer 7 which has a less broken engine than IE6.
The ONLY solution is to stick to the correct syntax that works everywhere.
pascal