View Full Version : Small question : borders


kagerou79
03-25-2003, 02:16 PM
I am using Dreamweaver to create a table but the border still looks too thick even though I set it to be 1px ... why ?
( I am not using css )

Should I define table borders in my Css ? how do I write css tags for my table borders to be 1px and black ?

Thank you :)

Colin
03-25-2003, 07:21 PM
try using a double table, that'll get them to the thinnest they can be


<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td bgcolor="000000">
<table cellpadding="0" cellspacing="1" border="0">
<tr>
<td bgcolor="YOUR COLOUR">
Text here
</td>
</tr>
</table>
</td>
</tr>
</table>

Alcy
03-25-2003, 08:56 PM
<table style="border:1px solid #000000;">