Home  |  About  | Last |  Submit  |  Contact
AllQuests.com




Previous Question:  Security in 2.0.3 Installation as default with HSphere  phpBB 2.0.x 2.0.x DiscussionNext Question:  General Error  phpBB 2.0.x 2.0.x Support Forum
Question line spacing in lists ( SitePoint Forums CSS )
Updated: 2008-11-23 09:20:03 (2)
line spacing in lists

I'm having linespacing problems with unordered lists.

When a list item goes over a single line I get very odd spacings between the lines. Is there a way of controlling this?

Code:
<style type="text/css">
	a {font: 70%/100% Verdana,Helvetica,sans-serif;text-decoration:none; color:#000099}
	a:hover{text-decoration:underline}
	ul{line-height:90%}
	div.box{width:145px}
</style>

<div class="box">
	<ul>
		<li><a href="">short link</a> </li>
		<li><a href="">short link</a> </li>
		<li><a href="">short link</a> </li>
		<li><a href="">a longer link than usual which breaks over more than one line</a> </li>
		<li><a href="">short link</a> </li>
	</ul>
</div>
I've tried putting a div around the list item but to no avail. In the example above I added line height to the ul and that just makes thing worse.

Any ideas?

Answers: line spacing in lists ( SitePoint Forums CSS )
line spacing in lists

Try this:
Code:
<style type="text/css">
a { font-family: verdana, helvetica, sans-serif; font-size: 11px; text-decoration: none; color:#000099}
a:hover { text-decoration: underline; }
div.box { width: 145px; }
ul {line-height: 100% }
</style>

Adam P.

line spacing in lists

Thanks,

the line height stated in the <a> tag was definitely the problem.

2kool2

Previous Question:  Security in 2.0.3 Installation as default with HSphere  phpBB  phpBB 2.0.x 2.0.x DiscussionNext Question:  General Error  phpBB  phpBB 2.0.x 2.0.x Support Forum

- Source: line spacing in lists SitePoint Forums CSS
- Previous Question: Security in 2.0.3 Installation as default with HSphere phpBB phpBB 2.0.x 2.0.x Discussion
- Next Question: General Error phpBB phpBB 2.0.x 2.0.x Support Forum