Dean | eCreate wrote:
How do I set the spacing between items in an unordered (or ordered) list?

Thanks,

Dean



You can only set the padding and margin properties if the LI element is block or inline-block. Not inline, I'm afraid. (AFAIK!)

ul (or ol) li {
   display: block;
   padding: 0.5em;
   margin: 1.5em;
}

HTH

--
-David R
******************************************************
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************



Reply via email to