I have the following code in my stylesheet...
body
{
background-image:url('Background.png');
}
td.Header
{
background: purple Url("Header.png");
height:100px;
width:100%;
border:5px;
border-style:solid;
border-color:blue;
}
Now This is how I use it in my html:
<table align="center" width="800px">
<tr>
<td class="header" height="100px">Where's my background and border?</td>
</tr>
<tr>
<td>The Normal Stuff </td>
</tr>
</table>
I do have my stylesheet linked to my html file. The only thing that works on my css sheet is my body class. My background image is appearing for my body. But for my td.header nothing at all is working. Please help.
Thanks Alot