答案 0 :(得分:3)
简单地说。像这样:
<a href="">
Player name
<img src="thumb.jpg">
</a>
<style>
a {position: relative;}
img {display: none; width: 100px; height: 100px; background: red; position: absolute; top: 20px; left: 0;}
a:hover img {display: block;}
</style>
图片有position: absolute;
,以避免在文档的其余部分移动其他元素。