On 06 Jan, JJ van Poll <[EMAIL PROTECTED]> wrote:
> In message <[EMAIL PROTECTED]>
>           Roger Darlington <[EMAIL PROTECTED]> wrote:


> > In HTML like:

> > <TABLE width=548 border=1 bgcolour="#eeffee">
> > <P> text etc
> > </TABLE>

> > The background table colour is ignored.

> > I have looked at the Progress page, and it mentions
> > TABLES>
> >  Elements col, colgroup, rowgroup and caption not implemented.

> > It doesn't seem to mention background colour as not being implemented.
> > [O2 doesn't ignore it, nor do other browsers I have tried].

> > Is the HTML legal?
> Perhaps bgcolor in stead of bgcolour?

No, bgcolor is correct, but I normally wouldn't put it in a <table> tag.
Instead, it is normally inserted in the <td> or <tr> tags. For example;

<table summary="Example" width="548" border="1">
        <tr>
                <td bgcolor="#eeffee">
                        <p>
                                Text etc...
                        </p>
                </td>
        </tr>
</table>

although bgcolor is a deprecated tag - CSS is preferred. See
http://www.w3.org/TR/REC-html40/struct/tables.html#h-11.2.1 for more on
this.

-- 
 //\  // Chika
//  \//  <miyuki><at><crashnet><org><uk> 

... Can I stop typing in taglines now please?

Reply via email to