Karl Jacobs wrote: > Hello all, > > Just discovered two things in a template that I'm building. > > Using Browsercam.com, it appears that the standard hover over > a list item to highlight the item is not working. IE7 appears > to ignore the hover.
It's a bug, and already solved in newer (unreleased) builds of IE7. If you want to remedy it now already, add a superfluous :hover style rule after the @import statement in the styleblock of your html files. > Second, in IE5, IE5.5 and apparently IE6, when I use the > width and the wid\th hack to force IE to highlight the li when > any part of it is rolled over, i'm getting some extra space > underneath each li. (NOT the whitespace bug, I'm already > correcting for that). It appears to be just one extra pixel of > space in addition to the border. Am I doing something wrong > here?... If you write the <li>'s without line breaks between them, the space disappears. Either in one long line, or like this: <ul ><li>...</li ><li>...</li ><li>...</li ></ul> -- Els http://locusmeus.com/ http://locusoptimus.com/ ______________________________________________________________________ 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/
