html 强制垂直滚动条

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 强制垂直滚动条相关的知识,希望对你有一定的参考价值。

html {
  overflow-y: scroll;
}



**************
There’s a specific one for Mozilla: 

  overflow: -moz-scrollbars-vertical


*******

I’m using this to force the scroll bar:

  html {heigth: 100%; margin-bottom: 1px}
o:
  html { min-height: 100%; padding-bottom: 1px; }
  
***

Don’t use

body,html{ overflow-y:scroll;}


********

You can just reset body’s overflow-y to “hidden” or “initial” to avoid the double-scrollbars:

html {
    overflow-y: scroll;
    overflow-x: hidden; /* I do NOT want hz scroll */
}
body {
    overflow-y: initial; /* avoid the double scroll */
}






以上是关于html 强制垂直滚动条的主要内容,如果未能解决你的问题,请参考以下文章

如何强制显示垂直滚动条? [复制]

CSS怎么隐藏滚动条

修复了带有水平滚动条和垂直滚动条的标题表

css 强制垂直滚动条

隐藏html水平但不垂直滚动条

关于iframe的滚动条,如何去掉水平滚动条或垂直滚动条