I have a div element on my page with its height set to 100%. The height of the body is also set to 100%. The inner div has a background and all that and is different from t
Just add these two line in your css id #some_div
display: block; overflow: auto;
After that you will get what your are looking for !