CSS - 头部代码中没有滚动条

时间:2015-06-30 18:53:16

标签: html css head

我正在尝试为我的网站随时显示滚动条但只能访问头部(使用Adobe Muse)。

我试图使用此代码,但它对我没有用处:

<html>
<style>
html {
    overflow-y: scroll; 
}
</style>
</html>

有什么想法吗?

3 个答案:

答案 0 :(得分:1)

This should work。你把风格标签放在正确的位置了吗?您的整个HTML结构应如下所示:

&#13;
&#13;
<html>

<head>
  <style type="text/css">
    html {
      overflow-y: scroll;
    }
  </style>
</head>

<body>
  <!-- Some content -->
</body>

</html>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

尝试这样做

html {
    overflow-y: scroll;
    height: 100%;
}

如果它被CSS的其余部分覆盖,您可能需要将!important添加到overflow-y: scroll !important;

答案 2 :(得分:0)

1。)

html {
  overflow: -moz-scrollbars-vertical; 
  overflow-y: scroll;
}

<强> 2)。

html { height:101%; }