gpt4 book ai didi

html - 如何创建具有背景图像的部分?

转载 作者:行者123 更新时间:2023-11-28 13:55:18 26 4
gpt4 key购买 nike

我正在尝试创建一个包含不同部分的页面,第一部分显示菜单和背景图像,然后在其下方有一个白色部分,其高度为例如500 像素。

出于某种原因,我似乎无法很好地适应我的图像。现在它甚至没有向我显示图像,我不确定为什么。

如何使图像适合屏幕,然后在其下方添加一个我可以滚动到的白色部分?

* {
margin: 0;
padding: 0;
}


#firstSection {
background-image: url("https://i.imgur.com/xZjqUcR.png") no-repeat;
background-size: cover;
height: 700px;
}


#secondSection {
height: 500px;
}
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<body>


<section id="nav-bar">

</section>

<section id="firstSection">

</section>

<section id="secondSection">

</section>

</body>

这就是我想要实现的目标,如果您向下滚动,应该会有一个 500 像素高的部分。

enter image description here

最佳答案

background-size调整为auto 100%并将背景放在右边:

* {
margin: 0;
padding: 0;
}

#firstSection {
background: url("https://i.imgur.com/xZjqUcR.png") right no-repeat;
background-size: auto 100%;
height: 500px;
}

#secondSection {
height: 500px;
}
<section id="nav-bar">

</section>

<section id="firstSection">

</section>

<section id="secondSection">

</section>

关于html - 如何创建具有背景图像的部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58702767/

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