With this HTML:
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</table>
I get this output:
1 2 3 4
But what i want is:
1
2 3
4
How can I achieve that without changing the HTML, only with CSS?
If i do like this:
td { display: table-row; }
td:nth-child(2), td:nth-child(3) { display: table-cell; }
It does not work. But if i remove "display:table-cell" i only need to make 2. and 3. td into 1 tr
Example: https://jsfiddle.net/1h3eyLqk/