I've been struggling with getting a UL formatted so that there isn't a
gap between each LI.

Set each LI to have a margin of 0, and that worked great for firefox,
but not for IE/PC.

I finally discovered the fix was to change my HTML from this:

<li>
        <a href="">link</a>
</li>
<li>
        <a href="">link</a>
</li>

To this:

<li><a href="">link</a></li><li><a href="">link</a></li>

I vaguely remember this being an issue back in the NN4 era, but haven't
ran into it in a long while. Is this just a browser bug, or is there any
chance that some CSS could remedy this? I'm guessing not, but thought
I'd ask...

I can obviously change the markup, but would prefer not to, both for
readability and the fact I have to dig into the bowels of the sytem's
XML/XLST to tranform the output.

-Darrel
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to