My table is very basic, consisting of 3 rows and 3 columns. I am attempting to make it resemble the layout shown in this image
https://i.sstatic.net/31nIN.jpg
(specifically, the thead should have a greater width than the other rows). How can I achieve this effect? I have experimented with colspan but haven't been successful so far. The structure of my basic table looks like this:
<table>
<thead>
<tr>
<th>Extra details</th>
</tr>
</thead>
<tbody>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>
</tbody>
</table>
Any suggestions or tips would be greatly appreciated!