mozilla firefox and internet explorer...just your opinion
Posted: Tue Jul 19, 2005 5:04 am
i just want to know if my observations are right...i did this code:
please take note that in the 2nd table, i made the bordercolor="#336699"...it works perfectly in internet explorer, but when i preview it in firefox, the desired color did not appear,instead,, the default color appears...then i did this
i put a class in my 2nd table,and edited my stylesheet with the following code
and it works in both browsers....no problem upto now..
now, is it just my observation??are you guys experiencing this observation?just a thought and i think, i'm just wanting my thoughts to be justified by your opinions guys...thanks...
Code: Select all
<table width="e;100%"e; border="e;0"e; bgcolor="e;#EDEFE1"e; cellpadding="e;0"e; cellspacing="e;0"e; align="e;center"e;>
<tr>
<td>
<table width="e;100%"e; border="e;1"e; bordercolor="e;#336699"e; cellpadding="e;0"e; cellspacing="e;0"e;>
<tr>
<td>
something
</td>
</tr>
</table>
</td>
</tr>
</table>Code: Select all
<table width="e;100%"e; border="e;0"e; bgcolor="e;#EDEFE1"e; cellpadding="e;0"e; cellspacing="e;0"e; align="e;center"e;>
<tr>
<td>
<table width="e;100%"e; border="e;1"e; class="e;maintableborder"e;cellpadding="e;0"e; cellspacing="e;0"e;>
<tr>
<td>
something
</td>
</tr>
</table>
</td>
</tr>
</table>Code: Select all
.maintableborder {
border: #4588CB 1px solid;
}now, is it just my observation??are you guys experiencing this observation?just a thought and i think, i'm just wanting my thoughts to be justified by your opinions guys...thanks...