After adding overflow-y: scroll !important to the iframe's css, I am still unable to achieve the y-axis scrollbar feature. It's a major problem due to a form within the iframe which cannot be completed due to its contents being cut off.
HTML
...
CSS
iframe { display: block; height: 2000px; width: 100vw; border: none; overflow-y: scroll !important; overflow: auto !important; } @media all and (min-width:320px) and (max-width: 480px) { iframe { height: 500vh; } } When inspecting the page, I see there's scrolling="no" and style="overflow: hidden" and I have no clue how it's getting appended and if it's the reason why the scrolling functionality isn't working. (
)Источник: https://stackoverflow.com/questions/781 ... o-overflow
Мобильная версия