ordered-list

List-item typically refers to an individual entry within a list structure. Common contexts and meanings:

  • HTML/web: An element inside an ordered (
      ) or unordered (

        ) list, represented by the

      • tag; can contain text, links, images, or nested lists.
      • UI/UX: A single row or card in a list view (e.g., email list, settings), often showing a title, subtitle, icon, and affordances (chevrons, checkboxes).
      • Data structures: An element in a linked list or array used to store values; may include pointers (next/previous) in linked implementations.
      • Markdown: A bullet or numbered line starting with -, , or a number plus period.
      • Accessibility: Should have clear focus states, readable labels, and semantic markup (e.g.,
      • ) for screen readers.

Best practices: keep items concise, maintain consistent formatting, support keyboard navigation, and provide clear affordances for actions (select, edit, delete).

Your email address will not be published. Required fields are marked *