1.3.3 Unordered List View in a new window

Example

Unordered Lists

This is a paragraph before an unnumbered list. Note that the spacing between a paragraph and a list before or after that is hard to tune in a user style sheet. You can't guess which paragraphs are logically related to a list, e.g. as a "list header".

  • One.
  • Two.
  • Three. Well, probably this list item should be longer. Note that for short items lists look better if they are compactly presented, whereas for long items, it would be better to have more vertical spacing between items.
  • Four. This is the last item in this list.
  • Let us terminate the list now without making any more fuss about it.
Markup
<div class="nsw-wysiwyg-content nsw-container">
<h2>Unordered Lists</h2>

  <p>This is a paragraph before an <strong>unnumbered</strong> list. Note that
  the spacing between a paragraph and a list before or after that is hard
  to tune in a user style sheet. You can't guess which paragraphs are
  logically related to a list, e.g. as a "list header".</p>
  <ul>
    <li> One.</li>
    <li> Two.</li>
    <li> Three. Well, probably this list item should be longer. Note that
  for short items lists look better if they are compactly presented,
          whereas for long items, it would be better to have more vertical spacing between items.
    <li> Four. This is the last item in this list.</li>
          Let us terminate the list now without making any more fuss about it.</li>
  </ul>
</div>