I have a Fixed positioned DIV whose content is appended using jquery.
When its height become greater than the screen size i cant see the contents at the bottom of the DIV.
To see the lower down i need to use zoom tool of the browser.
Is it possible that div becomes scrollable if its height increased than a specific limit.
Any help is appreciated.
You can set the
max-heightCSS property on the div, and it will increase to be no larger than the value you specify. Then setoverflow: autoto make it scrollable when content is outside of the viewable area.