PDA

View Full Version : Help Me please with a coding problem


redmex
01-24-2006, 05:59 PM
I am working on a site I joined. I saw many people had transparent tables and then you can see their backgroud pic...how can I do that :order: :order:

PsychoticDude85
01-24-2006, 06:01 PM
Something like this?
<table>
<tr>
<td style="background: url(images/bg1.jpg) repeat;">
<p>Content</p>
</td>
<td style="background: url(images/bg2.jpg) repeat;">
<p>Content</p>
</td>
</tr>
</table>

In that both <td>s have different backgrounds styled through Inline CSS.