gpt4 book ai didi

HTML 高度和背景图片问题

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

我有一个容器 div,里面的内容和页脚是这样的

<body>
<div class="container">
<div class='leveln'></div>
</div>
<div class="footer">
<p>Copyright &copy; 2014</p>
</div>
</body>

我给 body 设置了 100% 的高度。对于“leveln”类,我有一个背景图片。

.leveln{
width: 100%;
height: 80%;
margin: 0 auto !important;
position: relative;
background-image: url('/resources/img/head/f3.jpg');
background-repeat: no-repeat;
background-size: 100%;
}

问题是背景图像没有进来,即没有给容器高度。但是,如果我为容器提供高度,当我通过 ajax 向容器添加内容时,我的页脚不会下降。

overflow:auto is working.

但是它显示了不必要的滚动条。

感谢任何帮助。谢谢

最佳答案

我希望它可以帮助你在 html 标签上应用 css 规则。

<!DOCTYPE html>
<html>

<head>
<style>
.maincontainer {
width:100%;
height:768px;
position:relative;
margin:0px auto;
background:hsla(0,0%,100%,1)
}
.container {/* At first you have to set the main container rule.You have to set the minimun property to
call the child div .If you do it you will be able to see the image*/
width:600px;
height:350px;
margin:0px auto;
position:relative;
box-shadow: 0 0 18px #3D2828;
border-radius:10px;
bottom:50px;
top:30px;
}
.leveln{
width: 590px;
height: 345px;
margin: 0 auto !important;
position: relative;
background-image: url(../Images/Car/lotus_concept_car-wide.jpg);
background-repeat: no-repeat;
background-size: 100%;
border-radius:10px;
border:3px solid #c5fc3f;

}
.footer {
width:100%;
height:150px;
margin:0px auto;
border:3px solid #CCC;
border-radius:10px;
position:relative;
top:265px;
}
.footer>p {
color: #006699;
font-family: 'Comic Sans MS',Geneva,sans-serif;
font-size: 14px;
height: 20px;
margin: 0 auto;
position: relative;
top: 126px;
width: 200px;
}
</style>
</head>

<body>
<div class="maincontainer">

<div class="container">
<div class='leveln'></div>
</div>
<div class="footer">
<p>Copyright &copy; 2014</p>
</div>
</div>
</body>
</html>

enter image description here

关于HTML 高度和背景图片问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20814486/

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