Tables with slanted header row
When tables have long names for column headers, a good design solution is to ***** the header cells and their text, from 20-70 degrees.
The table still needs to be live, editable, and adjustable (both the cells AND text) so that when needed, the headers can be changed from 60 degrees to 45 degrees.
And when exported to PDF and EPUB, it needs to have the required accessibility tag structure:
<Table>
<TR>
<TH> (header)
<TH> (header)
<TH> (header)
<TH> (header)
<TR>
<TD> (data)
<TD> (data)
<TD> (data)
<TD> (data)
See attached screen cap of slanted column headers.
All we can do at this time is merely rotate the text at fixed amounts: 90, 180, and 270 degrees (shown in the bottom of screen capture). This isn't enough for many table designs, especially for those needing to design for accessible PDF and EPUB.
-
Bevi Chagnon | PubCom.com commented
Sorry, tag structure didn't retain in my first post. Here it is again:
Table
TR
TH (header)
TH (header)
TH (header)
TH (header)TR
TD (data)
TD (data)
TD (data)
TD (data)