tags:

views:

156

answers:

1

Possible Duplicate:

How to set cellpadding & cellspacing in CSS?

i have a little problem, i don't know how i can make my CSS style to remove cellpadding and cellspacing.

i hobe i can be helpet.

+4  A: 
table {  
    border-collapse: collapse;
}
th, td {
    padding: 0;
}
chrissr
tanks, all i need :D
NeoNmaN