I'm attempting to rearrange a table layout from its current form:
https://i.sstatic.net/fVgz6.png
to look like this:
https://i.sstatic.net/cYXGD.png
using only CSS. The rationale behind this is the abundance of space available on desktop compared to smartphone screens. Therefore, I want the table cells to stack vertically for smaller resolutions.
I've tried removing the colspan and rowspan attributes from my HTML file and transferring them to my CSS stylesheet, but it doesn't seem to be effective.
Is it feasible to achieve this using CSS exclusively?