Web Compendium Sitemap

List

An unordered list of things is represented by <ul> [MDN]. An ordered list is represented by <ol> [MDN]. And list items within a list are represented by <li> [MDN].

VoiceOver and Safari (Webkit) (macOS and iOS) remove list element semantics when list-style: none is used. A workaround is to apply an explicit role="list" in the list elements <ul> or <ol>. [scottohara.me, bugs.webkit.org]. Setting list-style-type: "" apparently is an alternative [matuzo.at].