html, body, div {
    height: 100%; // Passes through the height of the parent iframe element
}

div {
    // Magic to prevent iOS growing the iFrame to fit the content.
    // This container will mimic the behavior of the iframe on a desktop browser
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}

body {
    margin: 0;
    overflow: hidden;
}
