gpt4 book ai didi

html - 带有顶部填充的重复 css 背景

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

如何在顶部添加带有填充/空格的重复 css 背景。

这是我的 HTML 结构。

<div class="flare">
<div class="clouds">
<div class="clouds_bottom">

<div class="header">
contents
</div>

<div class="content_body_wrapper">
contents
</div>

<div class="footer">
contents
</div>

</div>
</div>
</div>

我的 css 代码不起作用。

.clouds_bottom {
background: url('../img/clouds_bottom_bg.png') repeat left 250px;
}

最佳答案

CSS 允许作弊。不要将背景放置在距离顶部 100% 的位置,而是用另一个具有原始背景 [color] 的 div 覆盖它。

html:

<html>
<body>
<div id="cheated_background">
</div>
<div id="body">
content
</div>
</body>
<html>​

CSS:

body {
background: lightblue; /* your clouds :) */
}
#cheated_background {
position: absolute;
top: 0px;
background: white;
width: 100%;
height: 100px;
}
#body {
position: relative;
}

查看 live example .

关于html - 带有顶部填充的重复 css 背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10236507/

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