- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 4 个社交 sprite 按钮的 sprite-sheet,经过数小时的研究后我无法将其用作列表项。每个 sprite 按钮应该占据与 sprite-sheet 中相同的背景位置。我什至尝试设置每个背景位置:0 0;没有成功。 如有任何建议,我们将不胜感激。
.s-1-facebook,
.s-2-tweet,
.s-3-google,
.s-4-email {
<!--background-image: url('http://i.stack.imgur.com/tpoaF.png');-->
background-image: url('images/sprites.png');
background-repeat: no-repeat;
display: inline-block;
list-style: none;
margin: -12px 0 0 -16px;
position: relative;
}
.s-1-facebook {
display: inline-block;
list-style: none;
background-position: 0 0;
width: 32px;
height: 32px;
position: absolute;
}
.s-2-tweet {
display: inline-block;
list-style: none;
background-position: -32px 0;
width: 32px;
height: 32px;
position: absolute;
}
.s-3-google {
display: inline-block;
list-style: none;
background-position: -72px 0;
width: 32px;
height: 32px;
position: absolute;
}
.s-4-email {
display: inline-block;
list-style: none;
background-position: -108px 0;
width: 32px;
height: 32px;
position: absolute;
}
<ul>
<li class="s-1-facebook">
<a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2F12phillipstreet.com" target="_blank" title="Share on Facebook"></a>
</li>
<li class="s-2-tweet">
<a href="https://twitter.com/intent/tweet?source=http%3A%2F%2F12phillipstreet.com" target="_blank" title="Tweet"></a>
</li>
<li class="s-3-google">
<a href="https://plus.google.com/share?url=http%3A%2F%2F12phillipstreet.com" target="_blank" title="Share on Google+"></a>
</li>
<li class="s-4-email">
<a href="mailto:?subject=&body=:%20http%3A%2F%2F12phillipstreet.com" target="_blank" title="Email"></a>
</li>
</ul>
最佳答案
让我们以 image
为例你提供的例子。图片的宽度为 140px,高度为 32px。
由于我们在图像中有 4 个均匀分布的图标,我们可以假设每个图标都有 35px 宽度 (140/4) 和 32px 高度。
为了使 Sprite 工作,我们必须将这些宽度/高度值分配给我们选择的元素,在您的情况下,我们将使用标签 a
在每个 li
里面.
要更改每个类中显示的图标,我们将使用 CSS 属性 background-position
.
因为我们已经知道我们的 Sprite 有 4 列和 1 行,所以我们只需要使用 x
位置(使用 35 的因子)。
ul.social {
list-style: none;
margin: 0;
padding: 0;
}
ul.social li {
float: left;
}
ul.social a {
background-image: url('http://i.stack.imgur.com/tpoaF.png');
width: 35px;
height: 32px;
display: inline-block;
}
ul.social li.s-2-tweet a {
background-position: -35px 0;
}
ul.social li.s-3-google a {
background-position: -70px 0;
}
ul.social li.s-4-email a {
background-position: -105px 0;
}
<ul class="social">
<li class="s-1-facebook">
<a href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2F12phillipstreet.com" target="_blank" title="Share on Facebook"></a>
</li>
<li class="s-2-tweet">
<a href="https://twitter.com/intent/tweet?source=http%3A%2F%2F12phillipstreet.com" target="_blank" title="Tweet"></a>
</li>
<li class="s-3-google">
<a href="https://plus.google.com/share?url=http%3A%2F%2F12phillipstreet.com" target="_blank" title="Share on Google+"></a>
</li>
<li class="s-4-email">
<a href="mailto:?subject=&body=:%20http%3A%2F%2F12phillipstreet.com" target="_blank" title="Email"></a>
</li>
</ul>
关于html - CSS Sprite 在 <li> 项中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33092933/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!