Reputation: 37
Table with only one border line, in this case i have two borders...
<table width="100%" border="1">
<tr>
<td width="12%"> </td>
<td width="88%"> </td>
</tr>
</table>
Thanks
Upvotes: 0
Views: 143
Reputation: 10258
You should really use css for styling where possible. A great article about it is here http://www.w3schools.com/css/css_table.asp
Try adding this to you css
table
{
border-collapse:collapse;
}
An example is here http://jsfiddle.net/cxmBW/1
Upvotes: 1
Reputation: 207901
Add the border-collapse CSS rule:
table {
border-collapse:collapse;
}
Upvotes: 4