I am currently using a standard HTML table to showcase data pulled from an API.
<table style="width:100%">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
In my design, the page layout is responsive.
As the screen width narrows and the content exceeds the space, I am looking for a CSS solution to reformat the <td> elements to behave like individual rows - creating 6 vertically aligned cells with the given code snippet. Is this possible?