Is it possible to extend a cell's border width/height so that it joins with the border of surrounding table?
I have this:
<table width="270px" style="border: 1px;">
   <tbody width="270px">
        <tr>
            <th colspan="3" style="border: 1px;">
                Header
            </th>
        </tr>
        <tr>
            <td style="border: 1px;" valign="middle">
                Left-hand cell
            </td>  
            <td valign="middle">
                Right-hand cell
            </td>
            <td>
                Left-hand cell
            </td>
        </tr>
    </tbody>
</table> 
What is happening is the inner borders don't meet the outer border - there is a slight gap.
Can I get these border to meet?
 
     
     
     
    