Question

I used bootstrap to make iframe responsive .iframe is a magazine that contains several pages. My problem is: I can scroll only one page in the iframe on IOS.

    <div id="outerdiv" class="embed-responsive embed-responsive-16by9"   style="-webkit-overflow-scrolling: touch !important; overflow: auto!important;">

<asp2:HtmlIframe src="#"  runat="server"class="embed-responsive-item"  id="frame" allowfullscreen></asp2:HtmlIframe>
        </div>
Was it helpful?

Solution

Try this:

 #s4-workspace, iframe {
    overflow: scroll !important;
    width: 100%;
    height: 100%;
    border: none;
}
.div {
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: none;
    background-color: #FFF;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top