Mary Ellen Curtin wrote:

> http://datagnostics.com/test/transparent.html Only float:left has
> worked so far. Should I be trying to force the a elements to "have
> layout"? Or something else?

You've found the bug we (or I at least) usually cures by faking a
background-image.

a {background-image: url(noimg)!important;}

...will work but isn't suitable since it'll apply the faked image to all
links whether they need one or not, so better make it...

a:hover {background: transparent url(noimg;)

...where a transparent background is needed and causes flickering in IE.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [[email protected]]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to