gpt4 book ai didi

html - 左侧重复的纹理和右侧重复的纹理

转载 作者:太空宇宙 更新时间:2023-11-04 13:55:25 24 4
gpt4 key购买 nike

我不知道该怎么做,但我想要 2 个重复纹理,一个向左重复,一个向右重复。

代替:

#header {
background-image : Url('My_Two_Textures_Combined.png');
background-repeat : repeat-x; /*Which repeats my joined textures a long the x axis*/
}

我愿意:

#header {
background-image : Url('My_Left_Texture');
background-repeat : repeat-x-left; /*Which would ideally repeat my texture to the left on the x axis*/
background-image : Url('My_Right_Texture');
background-repeat : repeat-x-Right; /*Which would ideally repeat my texture to the right on the x axis*/
}

我希望有办法做到这一点,因为我认为它在我的网站上看起来不错。我将尝试寻找其他方法来执行此操作,例如使用伪命令或其他方法。如果我找到任何东西,我会张贴在这里!

最佳答案

:before 和 :after 是一个很好的解决方案,但您始终可以使用 CSS3 查看多个背景。显然,支持也有一些限制:> IE8,但这也可以解决问题。

background-image: url(left.png), url(right.png);
background-position: left bottom, right bottom;
background-repeat: no-repeat;

关于html - 左侧重复的纹理和右侧重复的纹理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12711776/

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