gpt4 book ai didi

javascript - 如何将 DIV 定位在具有动态大小的固定 DIV 下方

转载 作者:太空宇宙 更新时间:2023-11-04 01:12:33 24 4
gpt4 key购买 nike

我有一个类似导航栏的东西,它固定在侧面的顶部。现在我想在它下面有一个 content-DIV 。问题是,导航栏没有固定的高度。

我怎样才能做到这一点?

HTML:

<div id="nav">
this is my navigation bar
</div>
<div id="content">
HERE <br>
IS <br>
MUCH <br>
CONTENT
</div>

CSS:

#nav {
position: fixed;
background: lightblue;
}

JSFIDDLE:enter link description here

最佳答案

纯 Javascript 解决方案

使用 javascript,您可以获得 <div id="nav"> 的高度和位置并用它们来计算你的 <div id="content"> 的位置:

var navDivElement = document.getElementById("nav");
var contentDivElement = document.getElementById("content");

contentDivElement.style.top = navDivElement.clientHeight + navDivElement.getBoundingClientRect().top + 'px';

压力

如何获取元素的位置:

var rect = element.getBoundingClientRect();
console.log(rect.top, rect.right, rect.bottom, rect.left);

来源:https://stackoverflow.com/a/11396681/4032282

如何获取元素的尺寸:

var e = document.getElementById('id')
console.log(e.clientHeight, e.offsetHeight, e.scrollHeight);
  • clientHeight包括高度和垂直填充。
  • offsetHeight包括高度、垂直填充和垂直边框。
  • scrollHeight包括所包含文档的高度(在滚动的情况下会大于高度)、垂直填充和垂直边框。

来源:https://stackoverflow.com/a/526352/4032282

CSS Sticky 解决方案

更改 position: fixed;导航的 position: sticky;并添加 top: 0; .

那样<div id="content">会放在导航下面,但是导航会留在他容器的顶部。

<html>
<head>
<style>
#nav {
position: sticky;
top: 0;
}

/* Allow you to play with the browser height to make the vertical scroll appears and use it to see that the nav will stay on top */
#content {
height: 500px;
background-color: #ff0000;
}
</style>
</head>
<body>
<div id="nav">NAV</div>
<div id="content">CONTENT</div>
</body>
</html>

关于javascript - 如何将 DIV 定位在具有动态大小的固定 DIV 下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50898558/

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