Thanks. I inherited this code, and I want to make it browser neutral. I'm
going to fix that comment problem, and
take a stab at the table problem. I know the width, so it shouldn't be set
to zero.
Rick
"Clarence (Andreas M. Schneider)" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Rick wrote:
> >
> > Tables that contain graphics flow differently in Mozilla than IE and NS.
> > I'm updating this site, and I'd like to slipstream any changes to get it
to
> > work with
> > all standards-compliant browsers.
> >
> > http://www.pbcountyclerk.com/official_records/disclaimer.html
>
> The problems are caused by <TD width=0> and
> http://bugzilla.mozilla.org/show_bug.cgi?id=32191
> (This bug is futured and not a violation of any standard,
> but a discontinuation of common practice).
>
> Also, be careful with your comments.
>
<!--------------------------------------------------------------------------
-->
> is a closed comment, but
>
<!--------------------------------------------------------------------------
>
> isn't. SGML comments are delimited by a "--" pair (Mozilla
> emulates the bugs of NS 4 and IE with this in quirks mode).
>
> Clarence