I have a table. The table is generated by some server side code which I can't change but I can add some CSS to style.
<table>
<tbody>
<tr>
<td>row 1 column 1</td>
<td>row 1 column 2</td>
</tr>
</tbody>
</table>
Is there a way of merging the two columns using CSS and not JQuery
|row1 column1 |row 1 column 2 |
| | |
get an output like
| row 1 column2 |
| |
Try to display the elements as block elements like this: