如何删除垂直滚动条空间和箭头(应该是不可见的)

时间:2014-09-22 22:16:11

标签: html css jsp scroll scrollbar

我使用了style =" overflow:hidden; white-space:nowrap;"

滚动条被删除,但是对于正文标记

,箭头不会被删除

1 个答案:

答案 0 :(得分:0)

使用:

style="overflow-y: hidden;"

你不应该真的不使用内联样式。试着这样写:

<head>
  <style="text/css">
    #container { overflow: hidden; }
  </style>
</head>
<body>
  <div id="container">Content goes here</div>
</body>

如果我的代码不起作用,我能否看到你的代码,因为我无法看到你做了什么。

编辑:

不确定我是否完全得到了你想要达到的目标。

将以下样式添加到页面中。

  <style="text/css">
    .hideOverflow { overflow: hidden; }
  </style>

您使用的是jQuery吗?

如果是这样,请在window.open事件中添加。

 $('body').addClass('hideOverflow');

我能看到你的window.open脚本吗?