There are a range of methods of removing whitespace in IE:
1. border-bottom
li { border-bottom: ?; }
2. display: inline - works well if the a element is set to display: block:
li { display: inline; }
3. float
li { float: right; }
li { float: left; }
4. vertical align
li a { vertical-align: bottom; }
5. removing html whitespace
<li><a href="">text</a></li><li
><a href="">text</a></li><li
>
Each has merits depending on your needs. Generally I find the display inline
or float options to work best.
HTH
Russ
> I tried changing the line-height but it never worked? Hmm still no luck
> unfortunately. Anybody else have a solution?
>
> Thanks though Jan
>
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************