I need a table with vertical columns. One way to do it is like this:
<table>
<tr>
<th>HEADER 1</th>
<td>X</td>
<td>Y</td>
<td>Z</td>
</tr>
<tr>
<th>HEADER 2</th>
<td>X</td>
<td>Y</td>
<td>Z</td>
</tr>
<tr>
<th>HEADER 3</th>
<td>X</td>
<td>Y</td>
<td>Z</td>
</tr>
</table>
However this is not entirely possible when you get the data dynamically from your back-end and use some kind of repeater to display it in the table.
I have made an attempt based on this answer but I wasn't successful.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…