gpt4 book ai didi

javascript - 垂直固定表头

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

我在一个最小宽度为 1124 像素的页面中工作,因此每次浏览器小于 1124 像素时,页面内容都可以水平滚动,而不是响应式过渡。

http://seluno.jp/

我想知道我是否可以只垂直固定标题,所以当浏览器小于1124px时,标题将与其余页面内容一起水平滚动,但当页面垂直滚动时,标题固定在顶。

body {
min-width: 1124px;
}

header {
position: fixed;
}

最佳答案

您可以使用 position: sticky; 使其固定在顶部但允许像这样水平滚动:

#header {
position: sticky;
top: 0;
z-index: 1;
}

例子:

body {
min-width: 1124px;
}

#header {
position: sticky;
top: 0;
z-index: 1;
}

/* Just to fill space on screen */
#header {
width: 100%;
height: 100px;
background: linear-gradient(45deg, white, blue);
}
.content {
min-height: 500px;
}
<div id="header">
<h1>Header</h1>
</div>
<div class="content">
<p>Content</p>
</div>

关于javascript - 垂直固定表头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48293489/

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