I am able to set grid lines to table using border attribute.
But the gridlines looks as the top & left sides are with same width and the
right & botom lines are thin than the top & left border.
What style is this?. Can I change this style to single equal border line on
all the sides?

Signature
Regards
> Hi,
>
[quoted text clipped - 7 lines]
> Do I need to set for each tablecell the border? or Is there any attribute
> for table to set the grid lines?
Alexey Smirnov - 06 Oct 2007 13:41 GMT
> I am able to set grid lines to table using border attribute.
> But the gridlines looks as the top & left sides are with same width and the
> right & botom lines are thin than the top & left border.
> What style is this?. Can I change this style to single equal border line on
> all the sides?
You can use CSS to set style for a table
<style type="text/css">
table {
border-width: 1px;
border-style: solid;
border-color: gray;
border-collapse: collapse;}
table
</style>