Looking for a solution with a table:
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</table>
Trying to format the cells to display as:
1 2
3 4
Attempted to use td:nth-child()
without success, only able to change the color or have them vertical.
Any suggestions would be greatly appreciated.