So since you want the inside tables to all be the same size, can't you just
set the bgcolor for the containing TD?

<table>
<tr>
<td bgcolor="1">
  <table>
  <tr>
  <td>Some data</td>
  </tr>
  </table>
</td>
<td bgcolor="2">
  <table>
  <tr>
  <td>Some data</td>
  </tr>
  </table>
</td>
</tr>
</table>

By the way if this works, it will be fine for solid colors, but if you set a
background image, in some versions of Netscape the image will be carried up
to the contained table and repeated in each cell. So don't do that.

Kevin Graeme

> -----Original Message-----
> From: Scott Weikert [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, September 19, 2002 3:07 PM
> To: CF-Talk
> Subject: Re: OT: Macs, Netscape, and table cell heights, oh my
>
>
> >Try using an invisible gif with the height set to 100% or set to
> a specific
> >height...
>
> No go on that. First off, the overall height of the cells in the row is
> driven by the amount of stuff in the cells - the cell that has the most,
> height-wise, drives the height of the rest. There's no hard value to use
> for an image height. Also, setting the image height to 100% didn't make a
> difference.
>
> The docs on Netscape's developer site states that putting
> "height=100%" on
> a table tag will make it conform to the parent element's height, but
> obviously this isn't the case in real life. :/ Works great in IE, though.
> Harrumph.
>
>
> 
______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to