Click to See Complete Forum and Search --> : How to indent a child lists using style or attributes??


sudheeral
02-03-2003, 11:19 PM
Hi,
I have a list<UL> with child lists. By default child list are indent by some default value. I want to indent child lists with a specific value.
Please show me how to do this.

thanks

Stefan
02-04-2003, 03:16 AM
<style type="text/css">
ul {margin-left:10px;}
ul ul {margin-left:10px;}
</style>

etc

sudheeral
02-04-2003, 06:11 AM
Stefan,
Thank you very much !