I have a problem with showing scroll bar when to use iframe tag.
I have to show scroll bar because the content is over 100 lines.
Although on desktop browsers, I can see the scroll bar in iframe box, on mobile Safari, it doesn't show scroll bar even I added the overflow style.
iframe {
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
<iframe id="PageHomePrivacyContent" src="test_en.html"></iframe>
I have looked for other solutions suchas iScroll, jQuery scroll plugin, etc.
However, all doesn't work.
What is the solution?
P.S. HTML5 removed scrolling attribute in iframe so please don't mention it.
Thanks,
Sung Am YANG