似乎无法使用滚动条显示iframe。
转到https://billiving-qa.azurewebsites.net/accountant 电子邮件:qa@billiving.com 传球:111111
使用F5重新加载列表,然后单击右侧的新发票。内容很长,但没有显示滚动条。
我的css使用以下内容:
.frm {
position: fixed; width: 100%; height:100vh; overflow-y:scroll !important; overflow-x:hidden !important;
}
html如下:
<iframe frameborder="5" class="frm" ng-src="{{trustSrc(url)}}" scrolling="yes"></iframe>
答案 0 :(得分:0)
您在ionic.app.css中隐藏了滚动条:
::-webkit-scrollbar {
display: none;
}
我不知道是否可以覆盖此样式,因此您可能需要将其删除。 Similar question.