-1

Possible Duplicate:
Is it possible to indent wrapped lines within code blocks via CSS?

Is there a way to make text lines align under each other in list elements?

enter image description here

Community
  • 1
  • 1
santa
  • 12,234
  • 49
  • 155
  • 255
  • By default, lists typically look like your 2nd example, with `list-style-position: outside`. https://developer.mozilla.org/en-US/docs/CSS/list-style-position – cimmanon Jan 07 '13 at 20:45
  • Hmm, that's what I thought, but I may have some other class interfering... Thanks. – santa Jan 07 '13 at 20:51

1 Answers1

1

Try adding this CSS:

li { list-style-position: outside; }
Kevin Boucher
  • 16,426
  • 3
  • 48
  • 55