My asp.net theme has default css style. How can I set default style to all my <td> in this css style?
views:
18answers:
1
                +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
                   2010-10-06 05:20:22
                
              nice explanation................
                  Nishant
                   2010-10-06 05:25:11