Forum Moderators: not2easy

Message Too Old, No Replies

Styling Lists Question

increasing the line spacing within & between list items

         

bernmc

12:08 pm on Oct 29, 2003 (gmt 0)

10+ Year Member



I need some help with styling an ordered list:

Is it possible to manipulate the line height of text within each list item separately from line height between list items?

eg I wanted the text of each bullet to have a spacing of 1.5 lines, and the spacing between each bullet 2.5 lines?

DrDoc

3:45 pm on Oct 29, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



It is possible if you use a combination of line-height and margins.

li {
line-height: 1.5em;
margin-bottom: 1em; /* ...or padding-bottom */
}