所以我做了一些使用以下css代码的页面:
html { overflow-y: scroll; }
ul.navbar {
list-style-type: none;
position: fixed;
top: 00px;
left: 00px;
width: 200px;
height: 700px;
background-image:url('/images/B_left-background.png');
}
ul.header {
position: fixed;
top: -20px;
left: 240px;
height: 100px;
width:700px;
background-image:url('/images/B_left-top.png');
}
body {
position: fixed;
top: 100px;
left: 300px;
font-family: Georgia, "Times New Roman",
Times, serif;
background-color: #D6E9B4;
}
div.scrollableContainer {
background: none repeat scroll 0 0 ;
border: 1px solid #999999;
height: 400px;
margin: 40px;
overflow: auto;
width: 800px;
}
h1 {font-family: Helvetica, Geneva, Arial,
SunSans-Regular, sans-serif }
ul.navbar a {text-decoration: none }
a.send{
color: black;
background-image:url('/images/send-message-bt.png');
position:fixed;
top:200px;
left:0px;
height:80px;
width:290px;
}
a.token{
color: black;
background-image:url('/images/token-ID-bt.png');
position:fixed;
top:300px;
left:0px;
height:80px;
width:290px;
}
a.history{
color: black;
background-image:url('/images/history-bt.png');
position:fixed;
top:400px;
left:0px;
height:80px;
width:290px;
}
a.comp{
background-image:url('/images/competition-bt.png');
position:fixed;
top:500px;
left:0px;
height:80px;
width:290px;
}
a.out{
background-image:url('/images/B_log-out-bt.png');
position:fixed;
top:600px;
left:50px;
height:60px;
width:160px;
}
我想让整个页面可滚动,这样如果低分辨率设备上的某个人仍然可以向下滚动。 正如你所看到的,我把它放入: html {overflow-y:scroll; } 但这没有用。
有什么方法可以解决这个问题吗?这与我设定固定高度有关吗?
答案 0 :(得分:10)
试试这个:
html { overflow-y: scroll; }
body { position: absolute; }
或者这个:
html { overflow-y: scroll; overflow-x:hidden; }
body { position: absolute; }
答案 1 :(得分:0)
事实证明我使我的侧边栏不可滚动并将其置于固定位置。 这是一个坏主意,所以我把它设置为绝对位置。 @Reina你的想法(从固定变为abolute帮助我到达那里。谢谢!
答案 2 :(得分:0)
溢出-y:滚动; 身体和html左
html,body{overflow-y: scroll; }
答案 3 :(得分:0)
对我来说有一个:
overflow-y: hidden;
在 body 的第一个子元素的 css 中阻止页面变得可滚动。一旦我删除它,页面就可以滚动。