gpt4 book ai didi

html - 多重背景

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

我在为一个页面设置两个背景时遇到问题。它应该是这样的:

enter image description here

我玩过 CSS 但没有任何效果,因为我看到的只是这个灰色的 bg.png 文件:

#kontakt {
background: url(../images/bg.png), url(../images/IMG_1340.jpg);
background-position: ;
background-repeat: reapeat-x, no-repeat;
}

是否可以像我打算的那样将页面分成两部分?非常感谢。

如果我使用这个 CSS:

background: url(../images/bg.png), url(../images/IMG_1340.jpg);
background-position: left top, right top;
background-repeat: repeat-x, no-repeat;
}

结果是这样的:

enter image description here

最佳答案

#kontakt {
background: url(../images/IMG_1340.jpg), url(../images/bg.png);
background-position: right top, left top;
background-repeat: no-repeat, repeat;
}

关于html - 多重背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23714478/

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