Reputation: 315
I have an unordered list with image links and when you hover over them they fade out a little bit and this shows all good in every browser except IE, of course. At first I thought it was just a png bug but after applying both of those fixes it still doesn't work. The page is at:
If anyone knows what is going on please let me know as I am completely stumped now. Thanks
Upvotes: 1
Views: 593
Reputation: 324790
It appears to work in IE7 and IE9, but not IE8. Interested, never seen that before.
Anyway, you can fix the problem by using a different method. Instead of using a list, just have your images (with links) inside the containing <div>
, then apply a style to the links such that they have display: inline-block;
- this will allow you to align them vertically with each other (vertical-align: middle;
) and set their width if you want.
Upvotes: 1
Reputation: 8887
The opacity fade is being achieved by styles that IE doesn't support
-webkit-transition: opacity;
-webkit-transition-timing-function: ease-out;
-webkit-transition-duration: 500ms;
Upvotes: 1
Reputation: 2229
It works in IE9 so first guess is you are using some css or javascript that isn't supported for earlier versions. You need to post the code so we can give you better guidance on how to resolve this.
Upvotes: 0