gpt4 book ai didi

Javascript/Ionic3 溢出 :hidden disable scroll in Firefox

转载 作者:数据小太阳 更新时间:2023-10-29 04:18:55 26 4
gpt4 key购买 nike

我遇到无法删除 Firefox Quantum 滚动条的问题。哦 Chrome 它就像这个 css 的魅力一样:

 div::-webkit-scrollbar {
border:none;
width:0;
background: rgba(0,0,0,0);
display: none;
overflow-x: hidden;
overflow-y: hidden;
}

div::-webkit-scrollbar-track {
border:none;
width:0;
background: rgba(0,0,0,0);
display: none;
overflow-x: hidden;
overflow-y: hidden;
}

div::-webkit-scrollbar-thumb {
border:none;
width:0;
background: rgba(0,0,0,0);
display: none;
overflow-x: hidden;
overflow-y: hidden;
}

我还尝试使用 jQuery 将其删除,并将其直接添加到正文标签中,如下所示 style="overflow: hidden;"

这些都不起作用。看来我无法摆脱它们。我怎样才能删除它们?

编辑:

通过添加 overflow: hidden;.scroll-content{} 它删除了滚动条,但我不能再在 firefox 上滚动了。如何启用溢出滚动:隐藏;

最佳答案

你可以这样做。

<style>
#container{
height: 500px;
width: 200px;
background-color: #ccc;
overflow: hidden;
}
#container-inner{
width: calc(100% + 17px);
height: 100%;
overflow: scroll;
overflow-x: hidden;
}
.content{
width: 100%;
height: 300px;
}
.one{
background-color: red;
}
.two{
background-color: green;
}
.three{
background-color: yellow;
}
</style>
<div>
<div id="container">
<div id="container-inner">
<div class="content one">
</div>
<div class="content two">
</div>
<div class="content three">
</div>
</div>
</div>
</div>

我会创建一个 fiddle ,但是 https://jsfiddle.net/现在正在下降。

关于Javascript/Ionic3 溢出 :hidden disable scroll in Firefox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47327299/

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