Skip to content Skip to sidebar Skip to footer

Scroll DIV Which Contains Image, Not Document

I have a large image within a div which i want to scroll. But instead of the div scrolling, i have the document scrolling. How can i get the image to scroll within the DIV and NOT

Solution 1:

You need to define a width and height. Divs are block elements and will take up as much space as needed. In this case as large as the image is.


Solution 2:

you need to fix size of div, for example:

width: 200px;
height: 200px;

Post a Comment for "Scroll DIV Which Contains Image, Not Document"