iframe scrolling
by mmansion
HTML
<section>
<iframe src='http://upload.wikimedia.org/wikipedia/commons/e/eb/Ash_Tree_-_geograph.org.uk_-_590710.jpg' scrolling="no"></iframe>
</section>
CSS
section {
width: 320px;
height: 300px;
overflow-x: hidden; overflow-y: scroll;
}
iframe {
margin:0;
padding:0;
width: 320px;
height: 400px;
overflow: hidden;
background:black;
}