Forum Moderators: not2easy

Message Too Old, No Replies

spacing between the lines

want 11/2 spaces

         

annej

12:14 am on Aug 18, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I have a left navigational column and have it single spaced but it puts the links so close it's easy to click on the wrong link. Double spaced spreads it all out too muuch. Is there a CSS way to do 1.5 verticle spacing?

I've been looking thru Myers and can only find how to do spaces within the lettering.

pageoneresults

1:53 am on Aug 18, 2003 (gmt 0)

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



Relative...

li{margin-bottom:.1em;}

Fixed...

li{margin-bottom:2px;}

Or whatever block level element you are using to separate the links. If you are using <br> than you may want to experiment with line-height. I wouldn't recommend <br> to separate the links.

Adjust the values above to meet your requirements.

annej

6:16 am on Aug 18, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Thanks! Problem solved. Once you gave me the right terms to look up I was able to make a lot more sense out of Myer's reference book.