
February 8th, 2003, 06:11 PM
|
|
Junior Member
|
|
Join Date: Feb 2003
Posts: 15
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
CSS - table border troubleshooting
I use this style for my tables:
table { border: 0px solid #CC0000; padding:10; background-color: #FFFFFF; margin-left:auto; margin-right:auto }
Every time I create a table it has a visible border, and it shows this in the HTML:
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
<tr>
<td width="100%"> </td>
</tr>
</table>
And even when I do this:
table { border: none; padding:10; background-color: #FFFFFF; margin-left:auto; margin-right:auto }
It still creates a table with a visible border.
In both cases, I check the table properties and it shows "0px" as the border. If I change it "0" in the table properties, there is still a visible border.
I can change the border size from 1+, but I can't get it to show an invisible border.
|