-sd-animation: sd-fadeIn; –sd-duration: 0ms; –sd-easing: ease-in;

Unordered List: What It Is and How to Use It

An unordered list is a simple way to group related items without implying any sequence or priority. It’s commonly used in writing, web content, documentation, and user interfaces when the order of items doesn’t matter.

When to use an unordered list

  • Grouping related points: Use when items are of equal importance (e.g., features, ingredients).
  • Improving readability: Breaks long text into scannable chunks.
  • Presenting options: Good for choices where order doesn’t matter.
  • Checklist beginnings: Use for non-sequential steps or components.

How to format unordered lists

  • In plain text, start each item with a dash (-), asterisk (*), or bullet (•).
  • In HTML, use the
      tag with

    • elements:
html
<ul><li>First item</li>  <li>Second item</li>  <li>Third item</li></ul>
  • In Markdown, use dashes, pluses, or asterisks:
- Item one- Item two- Item three

Best practices

  • Keep items parallel: Use the same grammatical form for each item.
  • Be concise: Short phrases are easier to scan.
  • Limit length: If an item needs a paragraph, consider using subpoints.
  • Use for clarity, not decoration: Don’t overuse lists; prefer prose when narrative flow matters.

Examples

  • Grocery list:
    • Apples
    • Bread
    • Milk
  • Website features:
    • Secure browsing
    • Customizable interface
    • Extensions support

An unordered list is a versatile formatting tool that improves clarity and scannability when used appropriately.

Comments

Leave a Reply

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