[html] I need an unordered list without any bullets

I used list-style on both the ul and the li to remove the bullets. I wanted to replace the bullets with a custom character, in this case a 'dash'. That gives a nicely indented effect that works fine when the text wraps.

_x000D_
_x000D_
ul.dashed-list {
    list-style: none outside none;
}

ul.dashed-list li:before {
    content: "\2014";
    float: left;
    margin: 0 0 0 -27px;
    padding: 0;
}

ul.dashed-list li {
    list-style-type: none;
}
_x000D_
<ul class="dashed-list">
  <li>text</li>
  <li>text</li>
</ul>
_x000D_
_x000D_
_x000D_