I'm using a tumblr site and adding elements to my pages: http://gcseanswers.co.uk/chemistry
I have embeded an iframe to show a document on the page, it works fine on both desktop and android devices. However you aren't able to scroll the iframe on ios.
Here is the html and css
iframe html
<div class="doc"><iframe src="https://docs.google.com/document/d/1FNsmMKZs-dGmO0Vy3V7AI25kswh6I2EW4UkD0q1EpYE/pub?embedded=true"></iframe></div>
css
.doc {
position: relative;
height: 500;
overflow: hidden;
padding-bottom: 85%;
}
.doc iframe {
position: absolute;
width: 100%;
height: 100%;
}
Please can you help me fix this problem, many thanks.