Fixed Position Div On Top Vertical Space
My situation is that I have fixed position div with percented height at the bottom of page that is on top of it(see picture). The issue is that when I scroll page to the end, some
Solution 1:
A nice solution could be to change the height of the fixed div to be expressed in vh
not in %
(see), for example:
div.fixed-at-bottom { height: 20vh; .... }
and then set a margin-bottom
to your contents div with the same value (or a little more to get more space):
div.content { margin-bottom: 22vh; .... }
I created a jsfiddle to present that.
Post a Comment for "Fixed Position Div On Top Vertical Space"