Ahmed Saad
Ahmed Saad

Reputation: 177

Scrolling a large Image in HTML - PhoneGap - Windows phone 8

I have a large image that i want the user to scroll, when i add the image normally in an img tag it scrolls up and down normally but it don't scroll right or left.

<div id="map">
    <img src="someimage" alt="map" width="1980" height="889">
</div>

This code work on windows phone 8 by scrolling up and down but not left and right.

Thanks in advance.

Upvotes: 0

Views: 160

Answers (1)

Ahmed Saad
Ahmed Saad

Reputation: 177

overflow:scroll;

in the css of the div

Upvotes: 1

Related Questions