Page 1 of 1

Posted: Sun Aug 19, 2007 3:38 pm
by ami38701
html help, how make table border more solid?

i set the table border=0.1, make no use,, any way?? is ccs can take it

Posted: Mon Aug 20, 2007 8:34 am
by Lixas
<TABLE border="0" cellpadding="0" cellspacing="0" width="100%">

Posted: Mon Aug 20, 2007 1:57 pm
by ami38701
but this make the table no border!!!
i neeb 1px for my table ,, and or include "td" label and "th" label

Posted: Mon Aug 20, 2007 6:50 pm
by Flipper3
I normally do this for my table borders:

Code: Select all

<table border="0" style="border-width: 1px; border-style: groove; border-color: black;" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>Wow!  Great border, isn't it? :P</td>
</tr>
</table>

Posted: Tue Aug 21, 2007 6:48 am
by Lixas
if it is not what flipper3 suggested- paint with mspaint or other graphical editor and post link to that image (or attach it in reply) and we will get what you need, because now i do not understand exactly

Posted: Sat Aug 25, 2007 12:10 am
by ami38701
yes flipper3 makes right,, but if there more <td> tab ,and the td has no border,,
and the border is onlu out of the table

Posted: Sat Aug 25, 2007 11:06 am
by ag3nt
you can use css property too
table
{
border-collapse:collapse;
border-width:1px
}

Posted: Wed Aug 29, 2007 7:20 am
by ami38701
yeah ,it run better. thanks ag3nt..