I am doing image cropping in my webpage.My problem is that when i crop a large image which is larger than the container holding the image,scroll bar is not automatically coming.So i am unable to crop the large image whose remaining part is under the container which is not visible to the user.So is there any way to create automatic scroll bar.thanks in advance.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You want to use the css overflow property
Which will load an image 1000x1000 pixels, but a scrollable area of just 300 x 300 pixels. Other possible values of overflow are: visible, hidden, scroll, auto, inherit |
|||||||||
|