Css problem

Soldato
Joined
4 Jul 2004
Posts
2,647
Location
aberdeen
Hello
I have some thumbnail images, 120x120. I want to display them at 60x60 with some text under it. When someone puts their mouse over it it should show it at 120x120 and the text should disapear.

Ive got it working in FF:
http://www.it-ws.co.uk/wtf/wtf.htm

But view it in IE and it doesn't work at all.

Anyone got any ideas? (note - those images are just off sxc.hu till i get real images for my project. Its not porno or anything!)
Cheers
 
http://www.w3schools.com/css/css_pseudo_classes.asp

Anchor Pseudo-classes
A link that is active, visited, unvisited, or when you mouse over a link can all be displayed in different ways in a CSS-supporting browser:

a:link {color: #FF0000} /* unvisited link */
a:visited {color: #00FF00} /* visited link */
a:hover {color: #FF00FF} /* mouse over link */
a:active {color: #0000FF} /* selected link */

Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!

Note: a:active MUST come after a:hover in the CSS definition in order to be effective!!







It might help, it might not...
 
Back
Top Bottom