I'm want to make a table border by changing only the style for table which will give me both the interior and exterior borders. I need to do this with style sheets and not with traditional html (<table border="1" bordercolor="blue" ...) method.
Is it possible to get the border around each cell using CSS without changing the style for td?
MrsBean
Code:
border-color: blue;
border-style: solid;
border-collapse: separate;
Is it possible to get the border around each cell using CSS without changing the style for td?
MrsBean