views:

18

answers:

1

My asp.net theme has default css style. How can I set default style to all my <td> in this css style?

+2  A: 

Do somthing like below to apply default style to all table element

table
{
border-collapse:collapse;
}
table,th, td
{
border: 1px solid black;
}
Pranay Rana
nice explanation................
Nishant