从内容编辑器/页面查看器 Web 部件中删除滚动条
我正在尝试在另一个 SharePoint Web 部件页面中显示 HTML 页面。
我使用了开箱即用的页面查看器 Web 部件,但页面查看器 Web 部件在其中显示禁用的滚动条。
我还尝试使用其中包含 IFRAME 标记的内容编辑器 Web 部件,但仍然不起作用。
这是我在内容编辑器 Web 部件中使用的代码。
<iframe name="Iframe" src="URL1" scrolling="no"
FRAMEBORDER="0" style="width:100%; border:0; height:100%; overflow:hidden;">
</iframe>
I am trying to display an HTML page inside another SharePoint webpart page.
I used the Out-of-the-box page viewer webpart, but the page viewer webpart displays a disabled scrollbar inside it.
I also tried using a content editor webpart with an IFRAME tag in it, but still it didnt't work.
This is the code i used in the content editor webpart.
<iframe name="Iframe" src="URL1" scrolling="no"
FRAMEBORDER="0" style="width:100%; border:0; height:100%; overflow:hidden;">
</iframe>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在您的样式表上使用它:
Use this on your stylesheet:
“宽度:100%;高度:100%”可能是罪魁祸首。 使 iframe 的大小大于框架窗口。 也尝试使用滚动=“否”
"width:100%;height:100%" may be the culprit. make size of the iframe larger than the frame window. Also try using scrolling="no"
我使用网络捕获 Web 部件而不是页面查看器 Web 部件获得了最佳结果。
确保您的内容没有定义的大小(因此它会在较小的框架中流动),然后调整网页捕获部分的大小,直到滚动条消失。
干杯,
里夫斯
I get the best results with the web capture web part instead of the page viewer web part.
Make sure your content doesn't have defined sizes (so it flows in the smaller frame) and then tweak the web capture part sizes until the scroll bars disappear.
Cheers,
Reeves