List item typically refers to a single entry within a list (ordered or unordered). Key points:
- Purpose: Presents one unit of information inside a list to improve readability and structure.
- Forms: Can be plain text, a sentence, a phrase, a paragraph, or a complex block containing images, links, or nested lists.
- Syntax (common formats):
- Markdown unordered:
- itemoritem - Markdown ordered:
1. item - HTML:
inside- Item
or
- Markdown unordered:
- Accessibility: Use semantic markup (HTML
) and meaningful concise text; for complex items, include ARIA roles/labels when needed.- /
- /
- Styling: Can be customized with bullets, numbers, icons, indentation, or CSS for visual hierarchy.
- Best practices:
- Keep items parallel in structure and length.
- Use concise phrasing; expand only when necessary.
- Group related items and use nesting for sub-items.
Leave a Reply