Looking for a way to rearrange a table with 2 columns after every 2 rows so that the lines continue on the right side? Check out the example below:
[1][2] [1][2][5][6]
[3][4] => [3][4][7][8]
[5][6]
[7][8]
Wondering if this can be achieved using only CSS?
Keep in mind, altering the HTML code is not an option. A solution that works in standard browsers would suffice.
UPDATE:
Feel free to view the Fiddle here.
Desiring to break the table after 9 rows (half).
For instance, breaking the table at 'strict2' line so that 'basic3' line is right next to 'basic.'
UPDATE 2:
As it turns out, achieving this through CSS alone is not feasible; therefore, I have opted for a JavaScript solution to rearrange the table.