Html – Is there a way to make rows of content into a column with pure CSS?
I have a table like this: <p>On large screens</p> <table> <tr> <td>1</td> <td>3</td> <td>5</td> </tr> <tr> <td>2</td> <td>4</td> <td>6</td> </tr> </table> Is there a way to modify it purely with CSS to LOOK like this? (a single column where every…