List Role

Previous Link role

Sometimes the content developers want to put together few bulleted points. As per HTML semantics any related elements having more than 3 items should be wrapped in HTML lists. Due to various reasons HTML lists might not be possible. In such scenarios ARIA list role can be used. In the <div> containing the items just add the role=”list” and that should do the magic.

Example
<div role=”list”>List Items</div>
Next Listbox role