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
Headings in the interface are only visual headings, but are not described semantically. This is an accessibility issue and creates inconvenience for users of assistive technologies such as screen readers.
It would be nice if the headings in the interface have the role of a heading.
The issue is relevant for the following elements:
Headings "Theme", "Auto Refresh", "Show first" and "Subscriptions" in the settings. They are laid out as an element, which has the role of banner and is intended for marking pages headers.
It is best to use basic heading tags:
<h2>Theme</h2>
As a last resort, if there is no desire or opportunity to change the layout and adapt styles for new elements, then you can use the role and aria-level attributes:
Headings in the interface are only visual headings, but are not described semantically. This is an accessibility issue and creates inconvenience for users of assistive technologies such as screen readers.
It would be nice if the headings in the interface have the role of a heading.
The issue is relevant for the following elements:
It is best to use basic heading tags:
As a last resort, if there is no desire or opportunity to change the layout and adapt styles for new elements, then you can use the role and aria-level attributes:
The option with the basic tag is preferable from an engineering point of view.
For more details see:
The text was updated successfully, but these errors were encountered: