我用类似精灵的技术制作了翻转效果
<a href="#">
<img width="240" height="160" src="240x160.jpg" class="…wp-post-image" alt="287" title="287" />
</a>
a{
display:block;
overflow: hidden;
width:120px;
height: 160px;
}
a:hover img{
margin-left: -120px;
}
它可以工作,但这样更好吗(在 xhtml 1 stric 或 html5 中)?
a img:hover{
margin-left: -120px;
}