iPad iFrame Scroll

HTML

<div class="scroll-wrapper">
    <iframe id="content" src="https://www.nu.nl"></iframe>
</div>

CSS

.scroll-wrapper {
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
    overflow-x: hidden;
    height: 200px;
    width: 500px;
}
.scroll-wrapper iframe {
    height: 100%;
    width: 100%;
}