PDA

View Full Version : css, th borders


DsgnrsTLZAdmin
03-12-2004, 08:29 PM
How do you specify no borders around <th></th> with css?

Steveo31
03-12-2004, 08:49 PM
Try...

th {
border-style:none;
}

shlagish
03-13-2004, 02:09 AM
or border: none;
or border-width: none;
or border: 0; I think there may be an issue with using none, not sure though...