It should automatically happen that way.
BUT
If you apply any overall or left margin, border, or padding style to the text in the UL list, or to a containing item, it will cause the automatic indenting to fall apart in most browsers.
Use of
list-style-position: inside;
forces the bullets to be in the paragraph, instead of separate. Use this instead:
list-style-position: outside;
MidiMagic
Nearly a Senior Poster
3,363 posts since Jan 2007
Reputation Points: 730
Solved Threads: 184
Skill Endorsements: 1
You have to remove all margin, border, and padding style to get the bulleted list to display properly. This includes containing objects with styles.
Or put the following style in:
li {padding: 0;
border: none;
margin: 0;
list-style-position: inside;}
MidiMagic
Nearly a Senior Poster
3,363 posts since Jan 2007
Reputation Points: 730
Solved Threads: 184
Skill Endorsements: 1