我有一个社交媒体按钮链接集,我想更改背景图像上的位置。这是我的代码: HTML:
<div id="connections">
<div id="googleplus"><a target="_blank" href=""> </a></div>
<div id="facebook"><a target="_blank" href=""> </a></div>
<div id="twitter"><a target="_blank" href=""> </a></div>
<div id="youtube"><a target="_blank" href=""> </a></div>
<div id="vimeo"><a target="_blank" href=""> </a></div>
</div>
CSS:
#connections div { display: inline; }
#connections div a {
display: inline-block;
height: 40px;
width: 40px;
border: none;
text-decoration: none;
font-size: 0;
margin: 5px;
}
#connections a { background-position: top center; }
#connections a:hover { background-position: 0 -40px; }
#connections #facebook a { background: url('../images/facebook.png') no-repeat; }
#connections #twitter a { background: url('../images/twitter.png') no-repeat; }
#connections #googleplus a { background: url('../images/googleplus.png') no-repeat; }
#connections #youtube a { background: url('../images/youtube.png') no-repeat; }
#connections #vimeo a { background: url('../images/vimeo.png') no-repeat; }
可以在此页面底部看到此预览 -> http://www.bokehcreative.co.uk/about.php
如果我将 !important 应用于 :hover 样式或将悬停样式应用于每个单独的 id,则可以做到这一点。
我可能在这里错过了一个技巧。任何帮助表示赞赏。