gpt4 book ai didi

css - 自定义背景图片

转载 作者:太空宇宙 更新时间:2023-11-03 21:59:56 26 4
gpt4 key购买 nike

如何在 css 中创建这样的背景(中间和最后一个 block 具有流体高度):

bg

有什么好的教程吗?

最佳答案

您可以制作顶部和底部的 div 元素并按如下方式设置它们的 CSS:

#topBGDiv 
{
width: 100%;
height: 125px; // Make this the height of the background image in pixels
background-image: url('dark-gray-ribbon.jpg');
background-repeat: repeat-x;
overflow: hidden;
}


#bottomBGDiv
{
width: 100%;
height: 110px; // Make this the height of the background image in pixels
background-image: url('light-gray-ribbon.jpg');
background-repeat: repeat-x;
overflow: hidden;
}

使用像这样的图像作为顶部的背景图像:

enter image description here

底部是这样的:

enter image description here

最后,将页面背景色的 CSS 设置为中间色。所以,像这样:

body
{
background-color: #C0C0C0;
}

关于css - 自定义背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11207947/

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