在将鼠标悬停在图像底部的图像上后,我试图让一些线条出现(比如大约 10px)
我在 MTV网站上每个帖子下方的“你也想要这些”部分看到了这一点。他们使用 css-background sprites 来做到这一点。
在反复尝试重新创建失败后,我快疯了。一切正常,除了主要的悬停线出现。到目前为止,这是我的代码
CSS
.yel_strip{background-position:-280px -495px; width:165px; margin:-8px 0 0 0; height:5px; position:absolute; display:none; z-index:1;}
.yel_strip:hover{ background:url(http://mtv.in.com/images/sprite_v1.png) no-repeat;}
HTML
<div class="movieL hover_thumb">
<div><a href=""><img width="165" height="93" alt="" src=""/></a>
<div class="yel_strip"></div>
</div> </div>
任何帮助将不胜感激。谢谢