Forum Moderators: open
I have a table that has several cells. I would like to use a background image for the table.
Our most beloved NS 4.7 feels the need to repeat the background image in each cell.
How do I get it to NOT repeat the image in each cell but rather use it as the background for the whole table?
:) Thank you.
When it comes to table elements, image backgrounds are horribly broken in Netscape 4.x. The only place they behave in that browser are in the body and layer elements.
You can't wrap the table in a div and get it to display the background (try it and you will see why).
So, to really get this to work you will need a solution that will provide a layer-based markup for NS 4.x and a regular markup for other browsers.
<table width="760" border="0" cellspacing="0" cellpadding="0" background="images/bg.gif">
<tr>
<td>
<table width="760" border="0" cellspacing="0" cellpadding="20" background="images/spacer.gif">
<tr>
<td width="273">
good luck (grrrr... netscape browsers ;-)
--
Joe