I want the <tr>
will have a border-bottom, but it doesnt show. Here is what I have done: jsfiddle
the code(although you can see it in the fiddle):
<table style="width:600px;">
<tr style="border-bottom: 1px solid black;">
<td style="width:30%">header1</td>
<td style="width:50%">header2</td>
<td style="width:20%">header3</td>
</tr>
<tr>
<td>something1</td>
<td>something2</td>
<td>something3</td>
</tr>
</table>
Also i dont want to have the space between the bottom-border when i use <td style="border-bottom:1px solid black">
on the <td>
s of the top <tr>