CSS - 多个图像合而为一并使用 CSS 确定背景

发布于 2024-08-24 13:04:11 字数 268 浏览 6 评论 0原文

如果您不明白我的意思,请查看此图片:

多个图像

我想知道它是如何工作的,CSS是的,但是当使用使用该图像的背景时,它到底是如何工作的,然后它完全按照它应该做的事情进行剪切 - 当确定为该图像的背景。

我很想知道如何做 - 这样我就可以把我的 CSS 水平提高一点 :P

谢谢

If you don't know what I mean, check this image out:

Multiple images

I want to know how it works, CSS yes, but exactly how does it all work out when using a background using this image and then it is all cut all exactly what it is supposed to do - when determined as a background for this image.

Would be interesting for me to know how - so I can take my CSS level up a bit more :P

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

久光 2024-08-31 13:04:12

您正在寻找的是CSS Sprites,有大量的教程和方法可以实现这一点。基本上,您所做的就是声明背景并使用 background-position 来决定背景中显示的内容。

顺便说一句,CSS Sprites 非常棒,对于尝试弄清楚它们来说是一件好事。

What you are looking for is CSS Sprites, there are heaps of tutorials and ways to achieve this. Basically what you are doing is declaring a background and using background-position to decide what in the background is displayed.

CSS Sprites are great by the way, good job for trying to figure them out.

尘曦 2024-08-31 13:04:12
<div id="buttonOne">Button 1</div>
<div id="buttonTwo">Button 2</div>

#buttonOne, #buttonTwo
{
    background-image: url(/images/ALL-BUTTONS-IN-ONE-IMAGE-TILED-16PX-APART.png);
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    overflow: hidden;
}

#buttonOne
{
    background-position: 0 0;
}

#buttonTwo
{
    background-position: 0 -16px;
}
<div id="buttonOne">Button 1</div>
<div id="buttonTwo">Button 2</div>

#buttonOne, #buttonTwo
{
    background-image: url(/images/ALL-BUTTONS-IN-ONE-IMAGE-TILED-16PX-APART.png);
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    overflow: hidden;
}

#buttonOne
{
    background-position: 0 0;
}

#buttonTwo
{
    background-position: 0 -16px;
}
瞎闹 2024-08-31 13:04:11
{
    height: foo;
    width: foo;
    overflow: hidden;
    background: colour url() no-repeat 0 pixels-to-top-of-image;
}
{
    height: foo;
    width: foo;
    overflow: hidden;
    background: colour url() no-repeat 0 pixels-to-top-of-image;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文