Set default style to table in ASP.Net
My asp.net theme has default css style. How can I set default style to all my <td>
in this css st开发者_如何学Pythonyle?
Do somthing like below to apply default style to all table element
table
{
border-collapse:collapse;
}
table,th, td
{
border: 1px solid black;
}
精彩评论