Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

increasing the spacing between lines with CSS

Status
Not open for further replies.

fiuPikeOY

Programmer
Jun 14, 2004
143
US
Hello,

I was wondering if the spacing between lines could be changed (increased) with CSS or anything else in Dreamweaver MX. I have a bunch of bulleted lines, and it looks kinda cramped up.

Thanks in advanced
 
Take a look at the "line-height" attribute for the <li> tag.

Ken
 
Code:
<style type="text/css">
 li { line-height: 1.5; }
</style>
Hope it helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top