CSS Sprite 问题

标签 css sprite

我在这里与一些 CSS 作斗争,它们不想被强制提交。我只想要那里的 Sprite ,周围没有边框,并且在悬停时降低不透明度。

到目前为止,这是跨浏览器的外观: enter image description here

Chrome 版本最接近我想要的,但我无法让边框消失,悬停不透明度也没有任何作用。

代码方面,这是我目前所处的位置:

.social-icons {
  background: url('/wp-content/themes/MySite/images/social-profiles/social-profiles-s.png') top left no-repeat;
  width: 32px;
  height: 32px;
}

.social-icons img {
  border-style: none;
}

.social-icons img:hover {
  opacity: 0.8;
}

img#facebook-ico.social-icons {
  background-position: 0px 0px;
}

img#twitter-ico.social-icons {
  background-position: -34px 0px;
}

img#google-plus-ico.social-icons {
  background-position: -68px 0px;
}

img#rss-ico.social-icons {
  background-position: -136px 0px;
}

最佳答案

我不知道为什么,但是你有空图像元素(没有'src')的事实不知何故导致了边框。我会删除图像元素并将背景直接放在 anchor 标记上。然后根据需要 float 和调整边距:

<a href="https://www.facebook.com/MeanwhileInAmerica" title="Meanwhile, In America on Facebook" target="_blank"></a>

.widget-container a:hover {
    background: url('/wp-content/themes/MeanwhileInAmerica/images/social-profiles/social-profiles-s.png') top left no-repeat;
    width: 32px;
    height: 32px;
    display: block;
    float: left;
}

.widget-container a {
    opacity(0.8);
}

我使用 Dev Tools 对其进行了测试...边框消失了,不透明度更改也起作用了。

您可能需要以不同的方式定位您的元素,以避免更改页面的其他部分。 Sprite 在其他方面看起来还不错。

编辑 根据:http://www.w3.org/TR/html5/embedded-content-0.html#attr-img-src “必须存在 src 属性”。

关于CSS Sprite 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20624032/

相关文章:

css - 替代 CSS 背景 Sprite

css - 如何防止图标/ Sprite 在流体设计中移动

html - 使用 CSS 创建 PDF - 未正确设置正文高度

css - 李 :last-child formatting an inner div

html - 页面中间的框?

html - 在没有javascript的情况下检测是否有溢出

html - 为什么 'use' 标签大小与它引用的 svg 元素不匹配?

python - 试图让部分 Sprite 改变颜色,但整个 Sprite 都改变了

css - 改变动画的方向

java - 如何多次绘制相同的运动图像?