Exemple avec hover:
Codage CSS de l'exemple:
a span { display: none; }
a:hover span { display: inline; }
<html> < head> < style type="text/css"> @import url(style/style.css);</style> < /head> < body> <a href="#">Survolez pour voir la boite <span>texte et image peuvent être placés ici</span></a> < /body> < /html>