Search code examples
cssliststylingunordered

Text indentation in unordered lists with CSS


I have an unordered HTML list and am using CSS to style everything. When the text has multiple lines, it starts before the bullet point. Is there a way to make it start after the bullet point position?

enter image description here


Solution

  • You want to use list-style-position:outside on your <ul>

    JsFiddle