I have a simple table with one big column. I want to display this single columns into multiple columns. Currently I have like as follows:
Column
a
a
a
a
a
a
I need something like:
Column
a a a
a a a
My code is as follows:
<table>
<thead>Details</thead>
<tbody>
<tr>
<td>a</td>
</tr>
<tr>
<td>a</td>
</tr>
<tr>
<td>a</td>
</tr>
<tr>
<td>a</td>
</tr>
<tr>
<td>a</td>
</tr>
<tr>
<td>a</td>
</tr>
</tbody>
</table>
How I can do that without changing the table structure?
Jsfiddle: http://jsfiddle.net/wLjmpvuz/
<tr>each one having three cells<td>. That's the answer.