Having trouble displaying an iframe with a scroll bar.
To view the issue, visit using email: [email protected] and password: 111111
After refreshing the page using F5, click on "new invoice" on the right side. The content is long but no scroll bar appears.
The CSS code I'm using is:
.frm {
position: fixed;
width: 100%;
height: 100vh;
overflow-y: scroll !important;
overflow-x: hidden !important;
}
Here's how the HTML looks:
<iframe frameborder="5" class="frm" ng-src="{{trustSrc(url)}}" scrolling="yes"></iframe>