li {
    display: inline;
    }
li:before {
    display: marker;
    /*marker degrades to inline, but will appear as a list
      marker on list-item and block elements; this is handy
      should the display of li change*/
    content: "* ";
    }