gpt4 book ai didi

css - 用 Sprite 重复背景图像

转载 作者:行者123 更新时间:2023-11-28 13:20:19 25 4
gpt4 key购买 nike

我已经阅读了这些主题,但我不知道如何找到答案。

问题是(对于正文):

background: url('image1.png') top left repeat-x, 
url('image2.png') bottom left repeat-x,
#eeeeee;

这有效。

如何在 Sprite 中设置这些图像?因为我可以获得图像形式的 Sprite :

  background-position: -211px -0px; width: 8px; height: 110px;

但我需要从 sprite 获取 image1.png 或 image2.png,我还需要在 x 上重复图像。像这样的东西:

background: url('image1.png') "-211px -0px; width: 8px; height: 110px" repeat-x, 
url('image2.png') "-211px -0px; width: 8px; height: 110px" repeat-x,
#eeeeee;

我知道这样是不可能的。

你能帮帮我吗?

提前致谢

最佳答案

这是不正确的:

background: url('image1.png') "-211px -0px; width: 8px; height: 110px" repeat-x, 
url('image2.png') "-211px -0px; width: 8px; height: 110px" repeat-x,
#eeeeee;

你应该这样写:

background: url('image1.png') repeat-x -211px -0px / 8px 110px, 
url('image2.png') repeat-x -211px -0px / 8px 110px;
background-color: #eeeeee;

但是你需要 2 个单独的图像,你将无法使用 sprite 来完成。

关于css - 用 Sprite 重复背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14689266/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com