Re: (css) list properites

> can you control the indents on a list (ul or ol) with css 1 or 2? Or do I
> need to beg for it for css 3?

You can do it with CSS1:

	li { margin-left: 1em }

If you want to control the individual indents of nested lists use:

	li { margin-left: 1em }
	ul ul li { margin-left: 10em }
	ul ul ul li { margin-left: 2em }

etc.

Steven Pemberton

Received on Wednesday, 10 February 1999 04:29:49 UTC