I've been playing with the following CSS.
which enables keeping content that fits on the screen to stay there while the scroll bar only moves content that overflows, nice little bit of CSS.
HOWEVER! - I can only get it to work in I.E. , is it possible to make this work in FF?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
Code:
html {
height: 100%;
overflow: hidden;
}
body {
margin: 0px;
padding: 0px;
height: 100%;
overflow: auto;
}
which enables keeping content that fits on the screen to stay there while the scroll bar only moves content that overflows, nice little bit of CSS.
HOWEVER! - I can only get it to work in I.E. , is it possible to make this work in FF?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.