Click to See Complete Forum and Search --> : Help with tables borders in FF?


raxxi
05-05-2007, 03:17 PM
It works fine in IE but not FF.
What I did have in the code in that part is:
<table height="100%" width="60%" border="1" cellpadding="0" cellspacing="0" frame="vsides" bordercolor="#FFCCFF">
<tr>
<td height="100%" width="60%" bgcolor="white" border="0" valign="top"><?php mosMainBody () ?></td>
</tr>
</table>

Major Payne
05-06-2007, 01:59 AM
Try using this:

<table style="width: 60%; border: 1px solid #ffccff; padding: 0; margin: 0;" summary="">
<tr>
<td style="height: 100%; width: 60%; background-color: #ffffff; border: 0 solid #ffccff; vertical-align: top;"><?php mosMainBody () ?></td>
</tr>
</table>

This on frames="vsides" (http://www.htmlcodetutorial.com/tables/index_famsupp_147.html).

Ron

Fang
05-06-2007, 08:56 AM
<table style="border-collapse:collapse;" height="100%" width="60%" border="1" cellpadding="0" cellspacing="0" frame="vsides" bordercolor="#FFCCFF">
<tr>
<td height="100%" width="60%" bgcolor="white" border="0" valign="top"><?php mosMainBody () ?></td>
</tr>
</table>

raxxi
05-06-2007, 06:29 PM
Thankies! I'll go try these..