Skip to content Skip to sidebar Skip to footer

Scrollable Fixed Div

I have a menu in a div on the side of the browser and I would like to keep it in the fixed position. However, the menu may exceed height of some screens and that would result inacc

Solution 1:

Add these to your declarations:

top: 0;
bottom: 0; /* or height: 100%; */

You can replace the zeroes with larger values to add margins.

Post a Comment for "Scrollable Fixed Div"