gpt4 book ai didi

html - 如何 overflow hidden : scroll scrollbar in centered div

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

我知道这个问题有很多重复的问题,但到目前为止这些都没有用。
我有一个宽度未知的 div,它使用 overflow-y: scroll,但我想隐藏滚动条并使其仍然可滚动。它位于屏幕中间,我该怎么做?

.content-middle {
margin: 0 auto;
text-align: center;
max-height: 81vh;
overflow-y: scroll;
}
<div class="content-middle">
<p>My content is here</p>
</div>

最佳答案

基本上您要做的是将可滚动元素放在另一个元素中并将其绝对定位在右侧。 (负值)

然后只关注可滚动元素的内容。

body {
overflow: hidden;
}

.content-middle {
margin: 0 auto;
text-align: center;
max-height: 81vh;
overflow-y: scroll;
position: absolute;
width: 100%;
right: -17px;
}
<div class="content-middle">
<p>My content is here</p>
</div>

关于html - 如何 overflow hidden : scroll scrollbar in centered div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38276638/

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