I have an html table:
<table>
<tr> <td>data...</td> <td>data...</td> <td>data...</td> </tr>
</table>
It shows how:
|data...|data...|data...|
which is good on large screens, but I want to split the columns into several rows as needed if the screen is small.
Therefore, if necessary, the table will look like:
----------
|data....|
|--------|
|data....|
|--------|
|data....|
----------
Is there a way to do this with something like css?
source
share