Hey
I have some trouble with a container, the container works in IE, but in FF the image defined in CSS don’t shows in the table. What could this be?
Her er the code:
<table class="FrontPage" width="200px" height="200px" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="19px" height="45px"><img src="<%= SkinPath %>/Images/btleft.gif"></td>
<td class="BlueHead"></td>
<td width="19px" height="45px"><img src="<%= SkinPath %>/Images/btright.gif"></td>
</tr>
<tr>
<td colspan="3" id="ContentPane" class="BlokkContent" runat="server" valign="top"></td>
</tr>
<tr>
<td width="19px" height="45px"><img src="<%= SkinPath %>/Images/gbleft.gif"></td>
<td class="BlueBottom"></td>
<td width="19px" height="45px"><img src="<%= SkinPath %>/Images/gbright.gif"></td>
</tr>
</table>
Her er the css:
.BlueHead {
background: url(Images\btback.gif) repeat-x center top;
}
.BlueBottom {
background: url(Images\gbback.gif) repeat-x center top;
}
.WhiteHeader {
color:#FFFFFF;
}
.BlokkContent {
background-color:#f8f8f8;
}
.FrontPage {
width:200px;
height:200px;
display:block;
margin-right:10px;
float:left;
}