Reputation: 601
its not showing the right border
<th style="border-style:solid; border-right:1px; border-left:0px; border-bottom:0px; border-top:0px;">s
</th>
Upvotes: 0
Views: 82
Reputation: 5512
in you css
th.giveaclassname {border:0 1px 0 0 solid black;}
in your html
<th class="giveaclassname">..</th>
or it might be that the borders are collapsing, and the thicker one prevails (see this post)
Upvotes: 0