SlideShare a Scribd company logo
CSS Display Properties
versus
HTMLSemantics
Adrian Roselli
Agenda
 About Me
 Use Case
 HTML Tables
 Responsive Web Design (RWD)
 CSS Display Properties
 ARIA to the Rescue?
 ARIA Grid
 display:contents
 How is This a Thing?
 Wrap-up
Adrian Roselli
• Building for the web
since 1993,
• Learn more at
AdrianRoselli.com,
• Avoid on Twitter
@aardrian.
A Use Case
UseCase
 Build a layout that can adapt to screen sizes,
 Uses a native HTML element that has inbuilt structure,
 Also has inbuilt semantics,
 Provides a specific set of nodes in the accessibility tree.
HTML Tables
HTMLTables
 We will use HTML tables as our proxy,
 They have a long history on the web,
 Used for layout and tabular data,
 Have a specific DOM structure,
 Have their own navigation methods in screen readers.
BasicHTMLTable
 Make a valid HTML <table>,
 Avoid spanning cells,
 Make sure you use <th> for headers,
 Add a useful <caption>.
<table>
<caption>Books I May or May Not Have Read</caption>
<tr>
<th>Author</th>
<th>Title</th>
<th>Year</th>
</tr>
<tr>
<td>Miguel De Cervantes</td>
<td>The Ingenious Gentleman Don Quixote of La Mancha</td>
<td>1605</td>
</tr>
[…]
</table>
BasicHTMLTable
Complexity#1:RowHeaders
 Continue to use <th>,
 Add the scope attribute using the values (as appropriate):
- row, col, rowgroup, colgroup.
 Conforms to WCAG technique H63: Using the scope attribute to
associate header cells and data cells in data tables.
Complexity#1:RowHeaders
<table>
<caption>Contact Information</caption>
<tr>
<td></td>
<th scope="col">Name</th>
<th scope="col">Phone#</th>
<th scope="col">Fax#</th>
<th scope="col">City</th>
</tr>
<tr>
<td>1.</td>
<th scope="row">Joel Garner</th>
<td>412-212-5421</td>
<td>412-212-5400</td>
<td>Pittsburgh</td>
</tr>
[…]
</table>
Complexity#2:SpanningCells
 Continue to use <th>,
 Every <th> gets an id,
 Every <td> gets a headers attribute
 The headers value is the id of the <th> you want it to use,
 Conforms to WCAG 2.0 technique H43: Using id and headers
attributes to associate data cells with header cells in data tables.
Complexity#2:SpanningCells
<table>
<tr>
<th rowspan="2" id="h">Homework</th>
<th colspan="3" id="e">Exams</th>
<th colspan="3" id="p">Projects</th>
</tr>
<tr>
<th id="e1" headers="e">1</th>
<th id="e2" headers="e">2</th>
<th id="ef" headers="e">Final</th>
<th id="p1" headers="p">1</th>
<th id="p2" headers="p">2</th>
<th id="pf" headers="p">Final</th>
</tr>
<tr>
<td headers="h">15%</td>
<td headers="e e1">15%</td>
<td headers="e e2">15%</td>
<td headers="e ef">20%</td>
<td headers="p p1">10%</td>
<td headers="p p2">10%</td>
<td headers="p pf">15%</td>
</tr>
</table>
Responsive Web
Design (RWD)
ResponsiveTables
 Specifically talking about viewport width,
 Let it scroll off-screen:
- Add tabindex="0" for keyboard users,
- Add role="region" so screen readers announce it,
- Add aria-labelledby so screen readers give it a name,
- Set the aria-labelledby value to the id of the <caption>.
ResponsiveTable
<div role="region" aria-labeledby="Cap1" tabindex="0">
<table>
<caption id="Cap1">Books I May or May Not Have Read</caption>
<tr>
<th>Author</th>
<th>Title</th>
<th>Year</th>
<th>ISBN-13</th>
<th>ISBN-10</th>
</tr>
<tr>
<td>Miguel De Cervantes</td>
<td>The Ingenious Gentleman Don Quixote of La Mancha</td>
<td>1605</td>
<td>9783125798502</td>
<td>3125798507</td>
</tr>
[…]
</table>
</div>
EvenMoreResponsive
• ‘Responsive’ is not just about viewport width;
• Even if it were, a scrolling table may not cut it.
RespondtoPrint
RespondtoWHCM
RespondtoViewportWidth
RejiggeringtheLayout
@media screen and (max-width: 37em), print and (max-width: 5in) {
table, tr, td {
display: block;
}
[…]
td {
display: grid;
grid-template-columns: 4em auto;
grid-gap: 1em 0.5em;
}
}
RejiggeringtheLayout
CSS Display
Properties
CSSDisplayProperties
 The following override native semantics in the browser:
- display: block
- display: inline
- display: grid
- display: flex
- display: contents
CSSDisplayProperties
 Nothing in the HTML / CSS specifications mandates this,
 Does not work in reverse:
- display: table
- display: table-cell
AssistiveTechnology(AT)
 Browsers do not convey correct semantics to AT,
 Users who rely on these semantics can be stranded:
- Understanding content,
- Navigating a page.
TablesasaCanary
 Breaking semantics of any single required child element can break
entire table:
- A missing row, column or row header;
- The parent table even with good rows and cells.
CSUN 2020: CSS Display Properties Versus HTML Semantics
ScreenReader(NVDA/Firefox)
ScreenReader(NVDA/Firefox)
AccessibilityTree
 A sub/super-set of the DOM,
 Includes UI objects of browser & objects of the document,
 Created in tree for every DOM element that:
- Fires an accessibility event,
- Has a property, relationship or feature which needs to be exposed.
 Is abstracted for dev tools.
AccessibilityTree:<table>
AccessibilityTree:<caption>
AccessibilityTree:<th>
AccessibilityTree:<td>
CSUN 2020: CSS Display Properties Versus HTML Semantics
Chromev80
 Released February 19, 2020,
 Fixes flex bug on table,
 Caused me to re-examine overall,
 Other fixes / changes are in there,
 Browsers based on Blink (ChromiEdge) will benefit.
CSUN 2020: CSS Display Properties Versus HTML Semantics
TheWebIsNotChrome
Screen Reader & Browser # of Respondents % of Respondents
JAWS with Chrome 259 21.4%
NVDA with Firefox 237 19.6%
NVDA with Chrome 218 18.0%
JAWS with Internet Explorer 139 11.5%
VoiceOver with Safari 110 9.1%
JAWS with Firefox 71 5.9%
VoiceOver with Chrome 36 3.0%
NVDA with Internet Explorer 14 1.2%
Other combinations 126 10.4%
WebAIM Screen Reader Survey #8 (2019)
Chrome80/Windows10
CSS <table>, etc. <ul>, <ol>, <dl> <h#> <button>
display: flex ✔ ✔ ✔ ✔
display: grid ✔ ✔ ✔ ✔
display: block ✔ ✔ ✔ ✔
display: inline-block ✔ ✔ ✔ ✔
display: contents ✔ ❌ ✔ ✔
Firefox73/Windows10
CSS <table>, etc. <ul>, <ol>, <dl> <h#> <button>
display: flex ❌1 ✔ ✔ ✔
display: grid ❌1 ✔ ✔ ✔
display: block ✔ ✔ ✔ ✔
display: inline-block ✔ ✔2 ✔ ✔
display: contents ❌ ✔2 ✔ ✔3
Safari/macOS10.15.2
CSS <table>, etc. <ul>, <ol>, <dl> <h#> <button>
display: flex ❌ ✔ ✔ ✔
display: grid ❌ ✔ ✔ ✔
display: block ❌ ❌1 ✔ ✔
display: inline-block ❌ ❌1 ✔ ✔
display: contents ❌ ❌1 ❌ ❌
Chrome80/Android10
CSS <table>, etc. <ul>, <ol>, <dl> <h#> <button>
display: flex ✔ ✔ ✔ ✔
display: grid ✔ ✔ ✔ ✔
display: block ✔ ✔ ✔ ✔
display: inline-block ✔ ✔ ✔ ✔
display: contents ✔ ❌ ✔ ✔
Safari/iOS
CSS <table>, etc. <ul>, <ol>, <dl> <h#> <button>
display: flex ❌ ✔ ✔ ✔
display: grid ❌ ✔ ✔ ✔
display: block ❌1 ❌ ✔ ✔
display: inline-block ❌1 ❌ ✔ ✔
display: contents ❌1 ❌ ❌ ❌2
display:table
 display: table, table-caption, table-row, table-cell;
 Each of these will add layout-table semantics in Chrome v80,
 There is no CSS display property for col/row headers,
 Requires a well-structured DOM,
 Not a workaround, fix, or way to do <div>s-as-tables.
CSUN 2020: CSS Display Properties Versus HTML Semantics
display:table
 As LayoutTable, LayoutRowTable, LayoutCellTable;
 JAWS, Narrator will read this as a table,
- But without col/row headers,
 NVDA, VO, TalkBack will not read this as a table.
Chromev82
 Will support align-items on <button>s,
- When display: inline-grid / grid / inline-flex / flex is applied,
 Lack of support has hampered <button> uptake in these layouts,
 Expect to see more <button>s with more display properties.
ARIA to the
Rescue?
ARIATableRoles
 <table role="table">
 <caption role="caption">
 <thead|tbody|tfoot role="rowgroup">
 <tr role="row">
 <td role="cell">
 <th scope="col" role="columnheader">
 <th scope="row" role="rowheader">
 Cannot address re-ordered
content,
 Cannot address hidden content.
ARIATableRoles
 Do not use ARIA grid roles,
 Test with a screen reader,
 If your tables are generated from script, update the script.
TablewithARIA
<table id="Books" role="table">
<caption id="Cap1" role="caption">Books I May or May Not Have Read</caption>
<tr role="row">
<th role="columnheader">Author</th>
<th role="columnheader">Title</th>
<th role="columnheader">Year</th>
<th role="columnheader">ISBN-13</th>
<th role="columnheader">ISBN-10</th>
</tr>
<tr role="row">
<td role="cell">Miguel De Cervantes</td>
<td role="cell">The Ingenious Gentleman Don Quixote of La Mancha</td>
<td role="cell">1605</td>
<td role="cell">9783125798502</td>
<td role="cell">3125798507</td>
</tr>
[…]
<tr role="row">
<td role="cell">George Orwell</td>
<td role="cell">Nineteen Eighty-Four</td>
<td role="cell">1948</td>
<td role="cell">9780451524935</td>
<td role="cell">0451524934</td>
</tr>
</table>
ScreenReader(NVDA/Firefox)
ARIA Grid
ARIAGrid
 Do not use for simple data tables,
 Intended to mimic Excel-style spreadsheet,
 A grid is a composite widget so it:
- Contains multiple interactive controls,
- Has only one tab-stop in the sequence,
- Requires author to provide code to manage focus within.
display:contents
Whatisdisplay:contents
 The element does not generate any boxes,
- Its children and pseudo-elements still generate boxes,
- Text runs as normal,
 For box generation & layout, element treated as if replaced in element tree
by its contents,
- As if opening and closing tags removed,
 Also yanks it from accessibility tree.
Whydisplay:contentsIsMoreDangerous
 You cannot add it back to the accessibility tree with ARIA,
- You can give it an accessible name and properties,
- But these are not passed to screen readers,
 Some browsers do not hand the information off,
 If used as a poor-dev’s CSS reset:
- Will hide elements from assistive technology,
- Will hide semantics from assistive technology.
AffectingDifferentElements
AccessibilityTree:<table>
AccessibilityTree:<ul>
AccessibilityTree:<button>
AccessibilityTree:<h2>
ScreenReader(NVDA/Firefox)
Bugs!
 Firefox bug 1455357 (19-Apr-2018): Setting grid item to display:
contents resets its accessible role
 Chromium Issue 835455 (20-Apr-2018): Element not exposed to
accessibility tree when it is set to display: contents
 Safari bug 39630240 (which I cannot see because my AppleID may
not have the needed permissions to see it)
 CSSWG #2632 (30-Apr-2018): [css-display][css-aam][selectors-4]
How elements with `display:contents` get focused?
How Is This a
Thing?
AssistiveTechIsNotatFault
 Not screen readers’ fault,
 Accessibility information comes from browser,
 Screen reader needs more than DOM to understand page,
 Cannot ignore all but the DOM:
- Years of HTML tables for layout informed screen readers,
- Screen readers developed heuristics for dealing with tables.
DetectingATIsNotViable
 Users generally don’t want us to be able to detect screen readers,
 Not all screen reader users are blind anyway,
 Mouse actions are a poor proxy for sighted screen reader users,
 Disabling a site’s CSS for screen reader users is impractical (and a
terrible, terrible idea).
CSSIsNotBlameless
 CSS already impacts HTML semantics — display: none,
 Using display: table does (generally) not impart HTML table
semantics,
 CSS flex or grid makes it easy for content order and source order to
disagree,
 CSS grid to lay out an HTML table still won’t be a table semantically.
ARIAIsNotIdeal
 You must understand ARIA and the table structure,
 This will require you to keep current on SR and browser support,
 You have to manage headers and other content you might hide,
 Consider how this scales with CSS does not load,
 This is not the purpose of ARIA,
 The technique here is a stop-gap.
TheBrowserIsNotRight
 The CSS spec does not state that semantics should be dropped,
 As display properties, there is no reason to remove them,
 The accessibility tree should not care about visuals.
Wrap-up
References
 It’s OK to Use Tables
 Hey, It’s Still OK to Use Tables
 A Responsive Accessible Table
 Tables, CSS Display Properties,
and ARIA
 Tables, JSON, CSS, ARIA,
RWD, TLAs…
 GitHub Contributions Chart
 Short note on what CSS display
properties do to table semantics
by Steve Faulkner
 Data Tables by Heydon Pickering
 How display: contents; Works by
Ire Aderinokun
 CSS3 — Appendix B: Effects of
display: contents on Unusual
Elements
Questions / Q & A

More Related Content

PPTX
WCBuf: CSS Display Properties versus HTML Semantics
PDF
Unit 2 (it workshop)
PDF
How to create a basic template
PDF
Object-Oriented CSS 從 OOCSS, SMACSS, BEM 到 AMCSS
PPTX
About Best friends - HTML, CSS and JS
PDF
Modular HTML, CSS, & JS Workshop
PDF
Doing it in style - creating beautiful sites, the web standards way / WebDD /...
PPTX
Supercharged HTML & CSS
WCBuf: CSS Display Properties versus HTML Semantics
Unit 2 (it workshop)
How to create a basic template
Object-Oriented CSS 從 OOCSS, SMACSS, BEM 到 AMCSS
About Best friends - HTML, CSS and JS
Modular HTML, CSS, & JS Workshop
Doing it in style - creating beautiful sites, the web standards way / WebDD /...
Supercharged HTML & CSS

What's hot (19)

PDF
CSS - OOCSS, SMACSS and more
PDF
CSS: a rapidly changing world
PPTX
Web technologies: Lesson 2
PDF
Unit 3 (it workshop).pptx
PDF
Tybscrc
DOCX
Practical file(XHTML)web designing
PDF
Web front end development introduction to html css and javascript
PPTX
Introduction to HTML and CSS
PPTX
Css for Development
KEY
The Cascade, Grids, Headings, and Selectors from an OOCSS Perspective, Ajax ...
PDF
Modular HTML & CSS
PDF
MTC 2013 Berlin - Best Practices for Multi Devices
KEY
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
PPTX
Concept of CSS unit3
PPTX
PDF
3 coding101 fewd_lesson3_your_first_website 20210105
PDF
Pfnp slides
KEY
Slow kinda sucks
CSS - OOCSS, SMACSS and more
CSS: a rapidly changing world
Web technologies: Lesson 2
Unit 3 (it workshop).pptx
Tybscrc
Practical file(XHTML)web designing
Web front end development introduction to html css and javascript
Introduction to HTML and CSS
Css for Development
The Cascade, Grids, Headings, and Selectors from an OOCSS Perspective, Ajax ...
Modular HTML & CSS
MTC 2013 Berlin - Best Practices for Multi Devices
Joomla! Day Chicago 2011 - Templating the right way - Jonathan Shroyer
Concept of CSS unit3
3 coding101 fewd_lesson3_your_first_website 20210105
Pfnp slides
Slow kinda sucks
Ad

Similar to CSUN 2020: CSS Display Properties Versus HTML Semantics (20)

PDF
Introduction to Bootstrap
PDF
HTML (Table and Multimedia): Understanding Web Development Essentials
PPTX
Web Design HTML for beginners and advanced learners .pptx
PDF
Flipping Tables: Displaying Data on Small Screens
PPTX
Web development ppt used to design web applocation
DOCX
Caracteristicas Basicas De Htlm
PDF
Vaadin Components @ Angular U
PDF
Nanoformats
PDF
hyper text markup language ppt-100605011058-phpapp02.pdf
PDF
Web Developement Workshop (Oct 2009 -Day 1)
PDF
Web I - 03 - Tables
PPTX
HTML Tutorials
PPTX
HTML [Basic] --by Abdulla-al Baset
PPTX
Table and Form HTML&CSS
PPTX
Static web sites assignment 1 philip lemmon1
PDF
basic knowledge abot html
KEY
Artdm171 Week4 Tags
PDF
CSS Frameworks
PDF
Introduction to Bootstrap
HTML (Table and Multimedia): Understanding Web Development Essentials
Web Design HTML for beginners and advanced learners .pptx
Flipping Tables: Displaying Data on Small Screens
Web development ppt used to design web applocation
Caracteristicas Basicas De Htlm
Vaadin Components @ Angular U
Nanoformats
hyper text markup language ppt-100605011058-phpapp02.pdf
Web Developement Workshop (Oct 2009 -Day 1)
Web I - 03 - Tables
HTML Tutorials
HTML [Basic] --by Abdulla-al Baset
Table and Form HTML&CSS
Static web sites assignment 1 philip lemmon1
basic knowledge abot html
Artdm171 Week4 Tags
CSS Frameworks
Ad

More from Adrian Roselli (20)

PPTX
Selfish Accessibility —DevOpsDays Buffalo
PPTX
Selfish Accessibility — YGLF Vilnius
PPTX
Role of Design in Accessibility — VilniusJS Meet-up
PPTX
The Role of Design in Accessibility — a11yTO Meet-up
PPTX
Prototyping Accessibility: Booster 2019
PPTX
Selfish Accessibility — Harbour Front HK
PPTX
Selfish Accessibility — CodeDaze
PPTX
Prototyping Accessibility - WordCamp Europe 2018
PPTX
Guelph A11y Conf: Everything I Know About Accessibility I Learned from Stack ...
PPTX
Fringe Accessibility — Portland UX
PPTX
Mind Your Lang — London Web Standards
PPTX
Inclusive Usability Testing - WordCamp London
PPTX
CSUN 2018: Everything I Know About Accessibility I Learned from Stack Overflow
PPTX
Inclusive Usability Testing — a11yTOCamp
PPTX
Selfish Accessibility - Girl Develop It Buffalo
PPTX
Everything I Know About Accessibility I Learned from Stack Overflow
PPTX
Selfish Accessibility — WordCamp Europe 2017
PPTX
Inclusive User Testing — Guelph Accessibility Conference
PPTX
Selfish Accessibility: MinneWebCon 2017
PPTX
Fringe Accessibility: London Web Standards
Selfish Accessibility —DevOpsDays Buffalo
Selfish Accessibility — YGLF Vilnius
Role of Design in Accessibility — VilniusJS Meet-up
The Role of Design in Accessibility — a11yTO Meet-up
Prototyping Accessibility: Booster 2019
Selfish Accessibility — Harbour Front HK
Selfish Accessibility — CodeDaze
Prototyping Accessibility - WordCamp Europe 2018
Guelph A11y Conf: Everything I Know About Accessibility I Learned from Stack ...
Fringe Accessibility — Portland UX
Mind Your Lang — London Web Standards
Inclusive Usability Testing - WordCamp London
CSUN 2018: Everything I Know About Accessibility I Learned from Stack Overflow
Inclusive Usability Testing — a11yTOCamp
Selfish Accessibility - Girl Develop It Buffalo
Everything I Know About Accessibility I Learned from Stack Overflow
Selfish Accessibility — WordCamp Europe 2017
Inclusive User Testing — Guelph Accessibility Conference
Selfish Accessibility: MinneWebCon 2017
Fringe Accessibility: London Web Standards

Recently uploaded (20)

PDF
The New Creative Director: How AI Tools for Social Media Content Creation Are...
PPTX
Power Point - Lesson 3_2.pptx grad school presentation
PPTX
SAP Ariba Sourcing PPT for learning material
PDF
💰 𝐔𝐊𝐓𝐈 𝐊𝐄𝐌𝐄𝐍𝐀𝐍𝐆𝐀𝐍 𝐊𝐈𝐏𝐄𝐑𝟒𝐃 𝐇𝐀𝐑𝐈 𝐈𝐍𝐈 𝟐𝟎𝟐𝟓 💰
PPTX
PptxGenJS_Demo_Chart_20250317130215833.pptx
PDF
Exploring VPS Hosting Trends for SMBs in 2025
PDF
SASE Traffic Flow - ZTNA Connector-1.pdf
PPTX
international classification of diseases ICD-10 review PPT.pptx
PDF
Smart Home Technology for Health Monitoring (www.kiu.ac.ug)
PDF
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
PPTX
Introduction to Information and Communication Technology
PDF
Vigrab.top – Online Tool for Downloading and Converting Social Media Videos a...
PDF
An introduction to the IFRS (ISSB) Stndards.pdf
DOCX
Unit-3 cyber security network security of internet system
PPTX
Digital Literacy And Online Safety on internet
PDF
Introduction to the IoT system, how the IoT system works
PPT
tcp ip networks nd ip layering assotred slides
PDF
Sims 4 Historia para lo sims 4 para jugar
PDF
FINAL CALL-6th International Conference on Networks & IOT (NeTIOT 2025)
PPTX
E -tech empowerment technologies PowerPoint
The New Creative Director: How AI Tools for Social Media Content Creation Are...
Power Point - Lesson 3_2.pptx grad school presentation
SAP Ariba Sourcing PPT for learning material
💰 𝐔𝐊𝐓𝐈 𝐊𝐄𝐌𝐄𝐍𝐀𝐍𝐆𝐀𝐍 𝐊𝐈𝐏𝐄𝐑𝟒𝐃 𝐇𝐀𝐑𝐈 𝐈𝐍𝐈 𝟐𝟎𝟐𝟓 💰
PptxGenJS_Demo_Chart_20250317130215833.pptx
Exploring VPS Hosting Trends for SMBs in 2025
SASE Traffic Flow - ZTNA Connector-1.pdf
international classification of diseases ICD-10 review PPT.pptx
Smart Home Technology for Health Monitoring (www.kiu.ac.ug)
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
Introduction to Information and Communication Technology
Vigrab.top – Online Tool for Downloading and Converting Social Media Videos a...
An introduction to the IFRS (ISSB) Stndards.pdf
Unit-3 cyber security network security of internet system
Digital Literacy And Online Safety on internet
Introduction to the IoT system, how the IoT system works
tcp ip networks nd ip layering assotred slides
Sims 4 Historia para lo sims 4 para jugar
FINAL CALL-6th International Conference on Networks & IOT (NeTIOT 2025)
E -tech empowerment technologies PowerPoint

CSUN 2020: CSS Display Properties Versus HTML Semantics

  • 2. Agenda  About Me  Use Case  HTML Tables  Responsive Web Design (RWD)  CSS Display Properties  ARIA to the Rescue?  ARIA Grid  display:contents  How is This a Thing?  Wrap-up
  • 3. Adrian Roselli • Building for the web since 1993, • Learn more at AdrianRoselli.com, • Avoid on Twitter @aardrian.
  • 5. UseCase  Build a layout that can adapt to screen sizes,  Uses a native HTML element that has inbuilt structure,  Also has inbuilt semantics,  Provides a specific set of nodes in the accessibility tree.
  • 7. HTMLTables  We will use HTML tables as our proxy,  They have a long history on the web,  Used for layout and tabular data,  Have a specific DOM structure,  Have their own navigation methods in screen readers.
  • 8. BasicHTMLTable  Make a valid HTML <table>,  Avoid spanning cells,  Make sure you use <th> for headers,  Add a useful <caption>.
  • 9. <table> <caption>Books I May or May Not Have Read</caption> <tr> <th>Author</th> <th>Title</th> <th>Year</th> </tr> <tr> <td>Miguel De Cervantes</td> <td>The Ingenious Gentleman Don Quixote of La Mancha</td> <td>1605</td> </tr> […] </table> BasicHTMLTable
  • 10. Complexity#1:RowHeaders  Continue to use <th>,  Add the scope attribute using the values (as appropriate): - row, col, rowgroup, colgroup.  Conforms to WCAG technique H63: Using the scope attribute to associate header cells and data cells in data tables.
  • 11. Complexity#1:RowHeaders <table> <caption>Contact Information</caption> <tr> <td></td> <th scope="col">Name</th> <th scope="col">Phone#</th> <th scope="col">Fax#</th> <th scope="col">City</th> </tr> <tr> <td>1.</td> <th scope="row">Joel Garner</th> <td>412-212-5421</td> <td>412-212-5400</td> <td>Pittsburgh</td> </tr> […] </table>
  • 12. Complexity#2:SpanningCells  Continue to use <th>,  Every <th> gets an id,  Every <td> gets a headers attribute  The headers value is the id of the <th> you want it to use,  Conforms to WCAG 2.0 technique H43: Using id and headers attributes to associate data cells with header cells in data tables.
  • 13. Complexity#2:SpanningCells <table> <tr> <th rowspan="2" id="h">Homework</th> <th colspan="3" id="e">Exams</th> <th colspan="3" id="p">Projects</th> </tr> <tr> <th id="e1" headers="e">1</th> <th id="e2" headers="e">2</th> <th id="ef" headers="e">Final</th> <th id="p1" headers="p">1</th> <th id="p2" headers="p">2</th> <th id="pf" headers="p">Final</th> </tr> <tr> <td headers="h">15%</td> <td headers="e e1">15%</td> <td headers="e e2">15%</td> <td headers="e ef">20%</td> <td headers="p p1">10%</td> <td headers="p p2">10%</td> <td headers="p pf">15%</td> </tr> </table>
  • 15. ResponsiveTables  Specifically talking about viewport width,  Let it scroll off-screen: - Add tabindex="0" for keyboard users, - Add role="region" so screen readers announce it, - Add aria-labelledby so screen readers give it a name, - Set the aria-labelledby value to the id of the <caption>.
  • 16. ResponsiveTable <div role="region" aria-labeledby="Cap1" tabindex="0"> <table> <caption id="Cap1">Books I May or May Not Have Read</caption> <tr> <th>Author</th> <th>Title</th> <th>Year</th> <th>ISBN-13</th> <th>ISBN-10</th> </tr> <tr> <td>Miguel De Cervantes</td> <td>The Ingenious Gentleman Don Quixote of La Mancha</td> <td>1605</td> <td>9783125798502</td> <td>3125798507</td> </tr> […] </table> </div>
  • 17. EvenMoreResponsive • ‘Responsive’ is not just about viewport width; • Even if it were, a scrolling table may not cut it.
  • 21. RejiggeringtheLayout @media screen and (max-width: 37em), print and (max-width: 5in) { table, tr, td { display: block; } […] td { display: grid; grid-template-columns: 4em auto; grid-gap: 1em 0.5em; } }
  • 24. CSSDisplayProperties  The following override native semantics in the browser: - display: block - display: inline - display: grid - display: flex - display: contents
  • 25. CSSDisplayProperties  Nothing in the HTML / CSS specifications mandates this,  Does not work in reverse: - display: table - display: table-cell
  • 26. AssistiveTechnology(AT)  Browsers do not convey correct semantics to AT,  Users who rely on these semantics can be stranded: - Understanding content, - Navigating a page.
  • 27. TablesasaCanary  Breaking semantics of any single required child element can break entire table: - A missing row, column or row header; - The parent table even with good rows and cells.
  • 31. AccessibilityTree  A sub/super-set of the DOM,  Includes UI objects of browser & objects of the document,  Created in tree for every DOM element that: - Fires an accessibility event, - Has a property, relationship or feature which needs to be exposed.  Is abstracted for dev tools.
  • 37. Chromev80  Released February 19, 2020,  Fixes flex bug on table,  Caused me to re-examine overall,  Other fixes / changes are in there,  Browsers based on Blink (ChromiEdge) will benefit.
  • 39. TheWebIsNotChrome Screen Reader & Browser # of Respondents % of Respondents JAWS with Chrome 259 21.4% NVDA with Firefox 237 19.6% NVDA with Chrome 218 18.0% JAWS with Internet Explorer 139 11.5% VoiceOver with Safari 110 9.1% JAWS with Firefox 71 5.9% VoiceOver with Chrome 36 3.0% NVDA with Internet Explorer 14 1.2% Other combinations 126 10.4% WebAIM Screen Reader Survey #8 (2019)
  • 40. Chrome80/Windows10 CSS <table>, etc. <ul>, <ol>, <dl> <h#> <button> display: flex ✔ ✔ ✔ ✔ display: grid ✔ ✔ ✔ ✔ display: block ✔ ✔ ✔ ✔ display: inline-block ✔ ✔ ✔ ✔ display: contents ✔ ❌ ✔ ✔
  • 41. Firefox73/Windows10 CSS <table>, etc. <ul>, <ol>, <dl> <h#> <button> display: flex ❌1 ✔ ✔ ✔ display: grid ❌1 ✔ ✔ ✔ display: block ✔ ✔ ✔ ✔ display: inline-block ✔ ✔2 ✔ ✔ display: contents ❌ ✔2 ✔ ✔3
  • 42. Safari/macOS10.15.2 CSS <table>, etc. <ul>, <ol>, <dl> <h#> <button> display: flex ❌ ✔ ✔ ✔ display: grid ❌ ✔ ✔ ✔ display: block ❌ ❌1 ✔ ✔ display: inline-block ❌ ❌1 ✔ ✔ display: contents ❌ ❌1 ❌ ❌
  • 43. Chrome80/Android10 CSS <table>, etc. <ul>, <ol>, <dl> <h#> <button> display: flex ✔ ✔ ✔ ✔ display: grid ✔ ✔ ✔ ✔ display: block ✔ ✔ ✔ ✔ display: inline-block ✔ ✔ ✔ ✔ display: contents ✔ ❌ ✔ ✔
  • 44. Safari/iOS CSS <table>, etc. <ul>, <ol>, <dl> <h#> <button> display: flex ❌ ✔ ✔ ✔ display: grid ❌ ✔ ✔ ✔ display: block ❌1 ❌ ✔ ✔ display: inline-block ❌1 ❌ ✔ ✔ display: contents ❌1 ❌ ❌ ❌2
  • 45. display:table  display: table, table-caption, table-row, table-cell;  Each of these will add layout-table semantics in Chrome v80,  There is no CSS display property for col/row headers,  Requires a well-structured DOM,  Not a workaround, fix, or way to do <div>s-as-tables.
  • 47. display:table  As LayoutTable, LayoutRowTable, LayoutCellTable;  JAWS, Narrator will read this as a table, - But without col/row headers,  NVDA, VO, TalkBack will not read this as a table.
  • 48. Chromev82  Will support align-items on <button>s, - When display: inline-grid / grid / inline-flex / flex is applied,  Lack of support has hampered <button> uptake in these layouts,  Expect to see more <button>s with more display properties.
  • 50. ARIATableRoles  <table role="table">  <caption role="caption">  <thead|tbody|tfoot role="rowgroup">  <tr role="row">  <td role="cell">  <th scope="col" role="columnheader">  <th scope="row" role="rowheader">  Cannot address re-ordered content,  Cannot address hidden content.
  • 51. ARIATableRoles  Do not use ARIA grid roles,  Test with a screen reader,  If your tables are generated from script, update the script.
  • 52. TablewithARIA <table id="Books" role="table"> <caption id="Cap1" role="caption">Books I May or May Not Have Read</caption> <tr role="row"> <th role="columnheader">Author</th> <th role="columnheader">Title</th> <th role="columnheader">Year</th> <th role="columnheader">ISBN-13</th> <th role="columnheader">ISBN-10</th> </tr> <tr role="row"> <td role="cell">Miguel De Cervantes</td> <td role="cell">The Ingenious Gentleman Don Quixote of La Mancha</td> <td role="cell">1605</td> <td role="cell">9783125798502</td> <td role="cell">3125798507</td> </tr> […] <tr role="row"> <td role="cell">George Orwell</td> <td role="cell">Nineteen Eighty-Four</td> <td role="cell">1948</td> <td role="cell">9780451524935</td> <td role="cell">0451524934</td> </tr> </table>
  • 55. ARIAGrid  Do not use for simple data tables,  Intended to mimic Excel-style spreadsheet,  A grid is a composite widget so it: - Contains multiple interactive controls, - Has only one tab-stop in the sequence, - Requires author to provide code to manage focus within.
  • 57. Whatisdisplay:contents  The element does not generate any boxes, - Its children and pseudo-elements still generate boxes, - Text runs as normal,  For box generation & layout, element treated as if replaced in element tree by its contents, - As if opening and closing tags removed,  Also yanks it from accessibility tree.
  • 58. Whydisplay:contentsIsMoreDangerous  You cannot add it back to the accessibility tree with ARIA, - You can give it an accessible name and properties, - But these are not passed to screen readers,  Some browsers do not hand the information off,  If used as a poor-dev’s CSS reset: - Will hide elements from assistive technology, - Will hide semantics from assistive technology.
  • 65. Bugs!  Firefox bug 1455357 (19-Apr-2018): Setting grid item to display: contents resets its accessible role  Chromium Issue 835455 (20-Apr-2018): Element not exposed to accessibility tree when it is set to display: contents  Safari bug 39630240 (which I cannot see because my AppleID may not have the needed permissions to see it)  CSSWG #2632 (30-Apr-2018): [css-display][css-aam][selectors-4] How elements with `display:contents` get focused?
  • 66. How Is This a Thing?
  • 67. AssistiveTechIsNotatFault  Not screen readers’ fault,  Accessibility information comes from browser,  Screen reader needs more than DOM to understand page,  Cannot ignore all but the DOM: - Years of HTML tables for layout informed screen readers, - Screen readers developed heuristics for dealing with tables.
  • 68. DetectingATIsNotViable  Users generally don’t want us to be able to detect screen readers,  Not all screen reader users are blind anyway,  Mouse actions are a poor proxy for sighted screen reader users,  Disabling a site’s CSS for screen reader users is impractical (and a terrible, terrible idea).
  • 69. CSSIsNotBlameless  CSS already impacts HTML semantics — display: none,  Using display: table does (generally) not impart HTML table semantics,  CSS flex or grid makes it easy for content order and source order to disagree,  CSS grid to lay out an HTML table still won’t be a table semantically.
  • 70. ARIAIsNotIdeal  You must understand ARIA and the table structure,  This will require you to keep current on SR and browser support,  You have to manage headers and other content you might hide,  Consider how this scales with CSS does not load,  This is not the purpose of ARIA,  The technique here is a stop-gap.
  • 71. TheBrowserIsNotRight  The CSS spec does not state that semantics should be dropped,  As display properties, there is no reason to remove them,  The accessibility tree should not care about visuals.
  • 73. References  It’s OK to Use Tables  Hey, It’s Still OK to Use Tables  A Responsive Accessible Table  Tables, CSS Display Properties, and ARIA  Tables, JSON, CSS, ARIA, RWD, TLAs…  GitHub Contributions Chart  Short note on what CSS display properties do to table semantics by Steve Faulkner  Data Tables by Heydon Pickering  How display: contents; Works by Ire Aderinokun  CSS3 — Appendix B: Effects of display: contents on Unusual Elements

Editor's Notes

  • #4: Building for the web since 1993, Learn more at AdrianRoselli.com, Avoid on Twitter @aardrian.
  • #5: Let’s talk about an example use case Think about an HTML structure that challenges developers across screen sizes and contexts
  • #7: HTML has a great way to present information in two axes. Tables will be my proxy throughout First a recap of tables
  • #9: Coding them is easy, though it can be monotonous.
  • #10: A series of rows, consistently coded. A header. A caption.
  • #11: Sure, they can be a bit more complex, but that only adds some attributes.
  • #13: Generally spanning is a bad idea, but it has its place.
  • #15: Responsive design may have been the cause of some of this resistance to tables Lists have fared much better. Now let’s look at how RWD complicates things
  • #16: Tables are the bane of the typical responsive developer. This is arguably the easiest and least-risky approach
  • #18: Still using tables as our example. Requirements might demand some visual restructuring
  • #19: Print is a media query, just like width, so support it.
  • #20: You likely will have to do nothing on a simple table. Unless you are using background colors or images.
  • #21: Perhaps you want to try a more novel way of adapting to a narrow width. You can rearrange the table cells using CSS. CSS display properties just as block, grid, flex can all be powerful.
  • #22: I convert everything in the table to block to make layout easier, Dumps all the table, row, and cell styling, I use grid on the cells to make it easier to add the ‘headings’ inline.
  • #23: I convert everything in the table to block to make layout easier, Dumps all the table, row, and cell styling, I use grid on the cells to make it easier to add the ‘headings’ inline.
  • #25: CSS as implemented in browsers today can remove semantics, Conversely, you can not add it back with CSS
  • #26: CSS as implemented in browsers today can remove semantics, Conversely, you can not add it back with CSS
  • #28: If any one part of a valid table goes away, the entire thing falls down. Mis-count of rows or columns, Headers associated with wrong data. Harder to see this in action with elements that do not have so many required children in a required structure. A broken table means your code may have this elsewhere.
  • #29: Github just wanted to prevent wide tables from breaking its layout. It made the table scrollable instead of a container. To do that required .markdown-body table {display: block;}. That made the table useless to SR and keyboard users.
  • #30: Using NVDA with Firefox Hit T to get to the table Using Ctrl + Alt + arrow keys to navigate the table Announces column headings as I change columns Tells me when at the edge
  • #31: Using NVDA with Firefox Hitting T will not bring me to the table Using Ctrl + Alt + arrow keys will not work Does not announce column nor row count Does not tell me when I am at the edge
  • #33: Table before CSS display properties on the left Table after CSS display properties on the right Note how the entire accessibility tree is gone
  • #34: Caption before CSS display properties on the left Caption after CSS display properties on the right Its caption role is maintained But it is not associated with a table
  • #35: Th before CSS display properties on the left Th after CSS display properties on the right Not associated with the table No computed properties
  • #36: Td before CSS display properties on the left Td after CSS display properties on the right Not associated with the table No computed properties
  • #37: Then things went all wobbly
  • #38: Chrome 80 was released. It fixed a bunch of issues related to tables.
  • #39: The highlighted cell is a flex item in a flex container. This image shows the accessibility inspector. The inspector shows it as a cell in a row. Yes, it is always gridcell
  • #40: This does not mean all is well. Chrome with JAWS makes up only ~22% of screen reader users. Chrome with NVDA is another 18%. Remember this is survey data. We don’t know how other assistive technology is handling it (I ran out of time to test).
  • #41: Chrome 80 does well with flex, grid, block, inline-block, and contents. Across tables, lists, headings, and buttons. Except lists with display: contents.
  • #42: <th>s with flex and grid are announced as cells, not col or row header, Inserts text leaf between each one, Issues a keyboard use warning.
  • #43: But recognizes <dl>
  • #44: Chrome 80 does well with flex, grid, block, inline-block, and contents. Across tables, lists, headings, and buttons. Except lists with display: contents. Essentially performs as desktop
  • #45: Treats all cells belonging in column 1. Still fires on double-tap with VO.
  • #46: If you create a structure like a table and add table-related display styles, Chrome calls it a layout table.
  • #49: CSS align-items defines the cross-axis The vertical axis in LTR languages Used for vertical alignment (centering, expanding, top, bottom, etc.)
  • #50: There is a long aversion to tables owing to their mis-use for layout. So some people try to use other HTML elements, They opt to “throw ARIA” at them.
  • #51: You can use ARIA to re-insert lost semantics Caption role coming in ARIA 1.2
  • #52: Grid slides coming up
  • #54: Using NVDA with Firefox Hit T to get to the table Using Ctrl + Alt + arrow keys to navigate the table Announces column headings as I change columns Tells me when at the edge
  • #56: ARIA grids are a terrible idea and are not for data tables. Not covering in this talk
  • #57: I am seeing this quickly become the new hotness. I want to call this one out specifically.
  • #58: I am seeing this quickly become the new hotness. I want to call this one out specifically.
  • #60: We know Chrome v80 has just addressed a bunch of issues, I covered it in the previous slides, The following slides show an older version of Chrome, They also demonstrate how you can confirm support without needing to fire up all your tools.
  • #61: Table before CSS display properties on the left Table after CSS display properties on the right Note how it is ignored in the accessibility tree The role does not bring it back
  • #62: ul before CSS display properties on the left ul after CSS display properties on the right Note how it is ignored in the accessibility tree The role does not bring it back
  • #63: button before CSS display properties on the left button after CSS display properties on the right Note how it is ignored in the accessibility tree The role does not bring it back
  • #64: h2 before CSS display properties on the left h2 after CSS display properties on the right Note how it is ignored in the accessibility tree The role does not bring it back
  • #65: 30 seconds of navigating by element type then by virtual cursor Some of this support has changed Again, see previous slides This demonstrates how you can test.
  • #66: These bugs are still open. Even the fixes in Chrome v80 do not close the Chromium issue.
  • #67: You may ask yourself: where is my beautiful table? You may ask yourself: where are the table semantics? And you may ask yourself: why is this so broken?
  • #68: Because developers used layout tables for years, SRs had to improvise to make them useable. Still using tables as my proxy, focus on SRs (which are not the only AT).
  • #69: How do you account for those with mobility impairments who do not use a mouse? Or mobile screen reader users who rely on touch gestures
  • #70: Think about how it used for vertical centering because vertical centering was not a thing in CSS for so long
  • #71: First Rule of ARIA! As ARIA fixes it in browser exposure, should help other AT.