Each LI is several lines long. they want the space between each line in the LI to match the rest of the page. what would be used to take care of that? Like i said, I tried line height (things like line-height:8px and line-height:.7em), but that didnit' seem to work out.
As Oscar mentioned, margins and padding are used to separate individual list items. You are correct in looking to the line-height property to space out the multiple lines of text within an LI. Try increasing the number. I typically set my line height like so: li { line-height: 1.4; }