html help, how make table border more solid?

Any problem with HTML can be discussed here.
Locked
ami38701
Posts: 62
Joined: Wed Aug 01, 2007 6:42 am

Post 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


Image
Lixas
Posts: 750
Joined: Wed Feb 16, 2005 4:21 pm

Post by Lixas »

<TABLE border="0" cellpadding="0" cellspacing="0" width="100%">
Image
ami38701
Posts: 62
Joined: Wed Aug 01, 2007 6:42 am

Post by ami38701 »

but this make the table no border!!!
i neeb 1px for my table ,, and or include "td" label and "th" label
Image
Flipper3
Posts: 353
Joined: Tue Feb 28, 2006 12:34 am

Post 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>
Lixas
Posts: 750
Joined: Wed Feb 16, 2005 4:21 pm

Post 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
Image
ami38701
Posts: 62
Joined: Wed Aug 01, 2007 6:42 am

Post 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
Image
ag3nt
Posts: 80
Joined: Mon Apr 30, 2007 6:57 pm

Post by ag3nt »

you can use css property too
table
{
border-collapse:collapse;
border-width:1px
}
New And Crazy Member Of SmokyHosts Community

By Ag3nt
ami38701
Posts: 62
Joined: Wed Aug 01, 2007 6:42 am

Post by ami38701 »

yeah ,it run better. thanks ag3nt..
Image
Locked