gpt4 book ai didi

html - 我无法自动调整横幅

转载 作者:行者123 更新时间:2023-11-28 04:40:20 27 4
gpt4 key购买 nike

宽度是自动调整的,但如果我将高度设置为 px 以外的任何值,横幅就会消失。我玩过最小高度和溢出,但唯一重要的是高度的 px 量。

提前致谢。

<div id="banner"></div>
<style>
#banner {
background:url('.png');

width:100%;
height:192px;
background-size:100%;
background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
}
</style>

最佳答案

为html和body标签指定一个高度,然后让你的div高度为100%,如下:

<style>
html,body
{
height:100%;
width:100%;
}

#banner {
background:url('.png');
width:100%;
height:100%;
background-size:100%;
background-repeat: no-repeat;
margin-left: auto;
margin-right: auto;
}
<style>

关于html - 我无法自动调整横幅,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41230025/

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