Example table:
<table style="width:100%">
<tr>
<th>Name</th>
<th>Telephone</th>
</tr>
<tr>
<td>Bill Gates</td>
<td colspan="2">555 77 854</td>
<td>555 77 855</td>
</tr>
</table>
I would like to merge two td
with phone numbers, to show them one next to another without a vertical line which separates two cells. But keeping those numbers in separate td
elements is a must, so I am not allowed to write both of them in one td
. Is this achievable?
It should look something like this:
+------------+-----------------------+
| Name | Telephone |
+------------+-----------------------+
| Bill Gates | 555 77 854 555 77 855 |
+------------+-----------------------+
EDIT
Colspaning table headers won't colspan my data, and that is what I actually need.