...
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td>A</td>
<td>B</td>
</tr>
...
So pretty basic, and it displays like
A B
A B
A B
In order to get this table displaying nicely on my mobile version, I wanted to take it into a single column display. So in my media query, I have done,
display: block; float: left; margin-left: -6px !important; width: 270px !important;
Which works pretty well, and in a single column. The problem is, the single column displays like
A
B
A
B
...
Is there anyway where it would be possible to display all the first td's first, and then the second td's? So in essense, getting the single column like
A
A
B
B
...
I dont think I can alter the html table, as the only place I can really change the display is in the media query.
Any advise appreciated.
Cheers

New Topic/Question
Reply



MultiQuote




|