A line of text before the Unordered List

A line of text after the Unordered List


      UL { 
        background: yellow; 
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
                                     /* No borders set */
      }
      LI { 
        color: white;                /* text color is white */ 
        background: blue;            /* Content, padding will be blue */
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px; 
        list-style: none             /* no glyphs before a list item */
                                     /* No borders set */
      }
      LI.withborder {
        border-style: dashed;
        border-width: medium;        /* sets border width on all sides */
        border-color: lime;
      }

    <UL>
      <LI>First element of list
      <LI class="withborder">Second element of list contains excerpts from 
                             Richard Nixon's "Checkers Speech" to illustrate wrapping.
    </UL>