gpt4 book ai didi

html - 我需要内部元素上的滚动条,而不是浏览器窗口(视口(viewport))

转载 作者:行者123 更新时间:2023-11-28 16:04:37 25 4
gpt4 key购买 nike

在下面的代码中,我如何使 article 容器自动增长以占用其下方剩余的垂直空间,但滚动条仅针对该元素保留。

换句话说,我只想滚动文章的内部而不是整个浏览器窗口。

有纯css解决方案吗?或者我是否需要 javascript 来检测浏览器窗口的大小并动态调整文章的高度属性?

html, body {
//height: 100%;

}
#outer_container {
display: flex;
flex-direction: row;
}
#outer2 {
flex: 1 0 auto;
}
#outer2 {
flex: 1 0 auto;
}
#container {
display: flex;
flex-direction: column;
height: 100%;
width: 50%;
background-color: red;
}
#container header {
background-color: gray;
}
#container article {
flex: 1 1 auto;
overflow-y: auto;
height: 0px;
}
#container footer {
background-color: gray;
}
<div id="outer_container">
<div id="outer1">
<h2>Outer 1</h2>
</div>

<section id="container">
<header id="header">This is a header</header>
<article id="content">
This is the content that
<br />With a lot of lines.
<br />With a lot of lines.
<br />This is the content that
<br />With a lot of lines.
<br />
<br />This is the content that
<br />With a lot of lines.
<br />
<br />This is the content that
<br />With a lot of lines.
<br />
</article>
<footer id="footer">This is a footer</footer>
</section>


<div id="outer2">
<h2>Outer 2</h2>
</div>
</div>

http://jsfiddle.net/ch7n6/907/

最初是基于这个问题的答案:
Flexbox and vertical scroll in a full-height app using NEWER flexbox api

最佳答案

您可以尝试将 position:fixed 设置为您的外部容器 ( http://jsfiddle.net/ch7n6/909/ ):

#outer_container{
display:flex;
flex-direction:row;
top:0;
bottom:0;
position:fixed;
}

如果它不适合您的设计,您可以使用 window.onresize 事件更改容器尺寸。

关于html - 我需要内部元素上的滚动条,而不是浏览器窗口(视口(viewport)),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39441543/

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