|
|
|
|
|
by webstrand
1378 days ago
|
|
Mobile view of tables is the worst, since they almost always horizontally overflow the narrow screens. I suggest that's another reason tabular non-tables have stuck around. Nowdays, with `display: contents` (on the tbody/tr) you can use `display: grid` to do the layout for your table, too, making it easier to make the table responsive. CSS lets you do other fun things to tables, too. For example
https://ffoodd.github.io/chaarts/pie-charts.html uses tables, but does not display like a table. |
|