Forum Moderators: not2easy

Message Too Old, No Replies

HTML list without margin

HTML list without margin

         

sylvainhugues

10:08 am on Nov 30, 2006 (gmt 0)

10+ Year Member



Hi coders!

I would like to parameter a HTML list, (<ul>)
the aim is to delete completely the inside margin,
i want my itemlist, subitemlist, subsubsitemlist, etc... (<li>)
at the same left level.
This aspect :

item
subitem
subsubitem

instead of :

item
---subitem
------subsubitem

("-" means a space.)

Thamx for your help, Sylvain.

Fotiman

3:12 pm on Nov 30, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Add this style:

ol, ul, li {
margin: 0;
padding: 0;
list-style: none;
}

Hope that helps.