Archive of: tables
-
Possible responsive table solution
April 30 2021
The first thing that came to mind yesterday when thinking about how to approach making a table responsive was to provide two versions of the table within the HTML of the page, and then simply show the appropriate version at certain breakpoints. I’m not sure how this might affect the accessibility of the tables if both are included, but I believe this may be a possible solution.
-
Table Practice
April 29 2021
It has been quite some time since I worked with tables in HTML, so I thought I’d get some practice in today. I’ve never made use of the
caption
element and I did not know about thecaption-side
property in CSS either. It’s always nice to learn new things about older elements and how I can style them via CSS. Note to self: I need to learn more about making responsive tables.