I'm having a row with 4 columns, and I need the last 2 columns to stack below and utilize all available width. How can I achieve this?
https://i.sstatic.net/VqEGZ.png
<table border="1" style="width: 100%;">
<thead>
<th>example</th>
</thead>
<tbody>
<tr>
<td style="width: 8%;">
title1
</td>
<td style="width: 100%;">
column1
</td>
<td style="width: 8%;">
title2
</td>
<td style="width: 100%;">
column2
</td>
</tr>
</tbody>
</table>