gpt4 book ai didi

css - 你如何让背景重复 y 从低开始?

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

我目前正在研究这个 page我试图让背景从一定高度重复 y 但无济于事。如果您查看链接的背景(底部区域);你会看到它在那里留下了一个丑陋的空间,这是丑陋的。 CSS如下所示

body {
font-family:Calibri;
font-size: 16px;
margin: 0px;
padding: 0px;
background-color: #000;
background-image: url(images/bg.png);
background-repeat: repeat -200px 0px;
}

最佳答案

我不知道这会使重复跳过一些像素。如果我是你,我会把它们分开,这样 body 的背景图像就是现在没有顶部的大部分。然后我会使用这些设置在顶部添加一个 div:

<div id="upperpart"></div>

在 CSS 中:

#upperpart{
background-image: url(whatever it is);
width:100%;
height:how high it is
background-repeat: repeat-x;
margin-bottom: minus its height; <-- this will make everything below this div get ontop the div
}

关于css - 你如何让背景重复 y 从低开始?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9732573/

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