humour
Programmer
- Nov 24, 2003
- 87
I have added several versions of <browsercaps> sections to my web.config file without success. What can I do to get this simple code to work with Netscape/Firfox/Safari (other browsers). I dont really care too much about most of the style sheet elements other than padding-left, padding-right I have spent hours on this any help MASSIVELY appreciated.
// Note I have tried both <table> and <asp:table>
// This stuff works great under IE but not at all under other browsers (Firefox/Netscape)
// HTML Snippet
.CSS Snippet
// Note I have tried both <table> and <asp:table>
// This stuff works great under IE but not at all under other browsers (Firefox/Netscape)
// HTML Snippet
Code:
<Table>
<TR>
<TD class="funkyBox">
This is a test this is a test this is a test
</TD>
<TR>
</Table>
.CSS Snippet
Code:
.funkyBox
{
border-right: #000099 thin solid;
padding-right: 4px;
border-top: #000099 thin solid;
padding-left: 4px;
font-size: x-small;
padding-bottom: 4px;
border-left: #000099 thin solid;
padding-top: 4px;
border-bottom: #000099 thin solid;
background-color: #ccffcc;
text-align: center;
}