Text indentation in unordered lists with CSS

Frank Vilea picture Frank Vilea · Apr 20, 2011 · Viewed 15k times · Source

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

Answer

Wesley Murch picture Wesley Murch · Apr 20, 2011

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

JsFiddle