gpt4 book ai didi

javascript - 在白色背景 div 下推送页脚

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

我有一个名为 content 的 div,其背景颜色为白色。我遇到一个问题,我让页脚留在页面底部,但它位于内容 div 的顶部。参见图片作为引用。我希望它始终位于内容 div 下,但如果缩小,也始终位于页面底部。我想要的一个完美例子是 http://www.jquery.com的页脚样式

这是一个演示 http://www.andrewhnovak.com/test/index.html enter image description here

HTML

   <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">

<title>Site Demo</title>
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/header.css" rel="stylesheet" type="text/css">
<link href="css/mainPage.css" rel="stylesheet" type="text/css">

<script type="text/javascript">
function setnewcontentheight(){
$("#inhalt").height(Math.max($(window).height()-$("#footer").height(),$('#inhalt').height()));
}

$(window).resize(function(){
setnewcontentheight();
});

$(document).ready(function() {
setnewcontentheight();
});
</script>

</head>

CSS

 .footer { 
z-index: 0;
bottom: 0px;
height: 40px;
width: 100%;
background-color:red;
}


.whiteBox{
background-color:white;
width:800px;
height:800px;
margin-left:auto;
margin-right:auto;
position:relative;
top:80px;
-webkit-box-shadow: 10px 11px 5px -6px rgba(0,0,0,0.43);
-moz-box-shadow: 10px 11px 5px -6px rgba(0,0,0,0.43);
box-shadow: 10px 11px 5px -6px rgba(0,0,0,0.43);
margin-bottom:100px;
z-index: 10;
}

最佳答案

在 setnewcontentheight 函数中,执行如下操作:

$("div.container:nth-child(5)").height(innerHeight - 40 - $("#footer").height());

(第 n 个 child 有点奇怪,您可能想为带有白纸的容器创建一个 ID 或更简单的选择器。)

关于javascript - 在白色背景 div 下推送页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28573345/

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