You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there -- the Liebling template uses an <article> tag as the top-level element for each article card. While it's understandable how this would seem reasonable, it's actually not okay under the spec.
The <article> tag is intended to contain a self-contained, independantly-distributable composition. The cards on the list pages don't satisfy this condition. In particular, the use of the <article> element creates downstream accessibility issues for folks that use screen-readers.
The text was updated successfully, but these errors were encountered:
I understand your point but actually the spec also suggest that the <article> tag can be used in situations like this:
A given document can have multiple articles in it; for example, on a blog that shows the text of each article one after another as the reader scrolls, each post would be contained in an <article> element, possibly with one or more <section>s within.
The accessibility of the template is quite good, barring this one issue. I would encourage you to try an actual screen-reader rather than an accessibility testing tool in order to observe the impact. (ChromeVox is free, and behaves quite closely to commercial screen-readers)
The "self contained" and "independently redistributable" semantic requirements are actually pretty important. You'll observe that the screen reader will treat each <article> as a complete article as the user walks the accessibility "focus" forward, and the additional controls and labels therein are treated as though they're the text of the article and read in their entirety rather than being presented as separate controls.
The examples cited in the MDN docs are for blogs where the actual articles are peers or descendants on a single long page, rather than a list of article links.
I'll be working with impacted users next week to get their opinions -- I'll be A/B testing versions that treat each card as either plain-old <div> elements at the top level or as an unordered list. Depending on which of the two works best for them, I'll submit a PR.
Hi there -- the Liebling template uses an
<article>
tag as the top-level element for each article card. While it's understandable how this would seem reasonable, it's actually not okay under the spec.The
<article>
tag is intended to contain a self-contained, independantly-distributable composition. The cards on the list pages don't satisfy this condition. In particular, the use of the<article>
element creates downstream accessibility issues for folks that use screen-readers.The text was updated successfully, but these errors were encountered: