Unordered-list
An unordered list is a simple, flexible way to present related items without implying any order or priority. In digital documents and web pages, unordered lists are typically rendered as bullet points, making them easy to scan and understand.
When to use unordered lists
- Grouping related items: Use unordered lists when the items share a common theme but their sequence doesn’t matter.
- Presenting options: Ideal for listing alternatives or features where order is irrelevant.
- Improving readability: Breaks dense text into bite-sized points for quicker comprehension.
How to create and format unordered lists
- Plain text: Start each item on a new line with a dash, asterisk, or bullet symbol:
- Item one
- Item two
- HTML: Use the
- tag with
- for each item:
html
<ul><li>Item one</li> <li>Item two</li></ul> - Markdown: Prefix lines with hyphens or asterisks:
- Item one
- Item two
- Rich editors: Use the bullet list tool to automatically format items.
- for each item:
Best practices
- Keep items parallel: Use the same grammatical structure for each item (e.g., all nouns or all verb phrases).
- Be concise: Short, clear items are easier to scan.
- Limit length: If an item requires more detail, consider nesting a paragraph or a sub-list.
- Avoid overuse: For complex sequences, ordered lists or numbered steps are more appropriate.
Examples
- Shopping list:
- Milk
- Bread
- Eggs
- Features of an app:
- Real-time sync
- Offline mode
- Customizable themes
Unordered lists help organize information, aid readability, and guide readers through related content without implying ranking or sequence.
Leave a Reply