About setting of iframe for seeing on iPhone safari - Forum

Forum Navigation
You need to log in to create posts and topics.

About setting of iframe for seeing on iPhone safari

I am using an iframe in the website. Iframe scrolls well on PC and Android. It will not work on iPhone. Please tell me how to do it.

Go to Project -> Properties -> Styles and add this code:

.scrollable{
overflow:auto;
-webkit-overflow-scrolling:touch;
 }

Then goto the working area and select your IFrame.
On the properties panel, go to Advanced and select "scrollable" on the css-class property.
I think it will work. It's a known bug in iOS Safari browser.

Thank you. However, I tried it by the above method, but I could not.