1

我正在尝试将此 MS 表单嵌入到 SquareSpace 中,但我在页面中有 2 个滚动条(一个用于浏览器,一个用于此表单)。

<iframe width="460px" height= "1000px" scrolling="no" 
src= "https:...&embed=true" 
frameborder= "0" marginwidth= "0" marginheight= "0" style= "overflow:hidden; border: none; max-width:100%; max-height:100vh" 
allowfullscreen webkitallowfullscreen mozallowfullscreen msallowfullscreen> </iframe>

我想知道是否有办法删除表单的滚动条并且只有浏览器 scoller?显然,页面的滚动时间更长,具体取决于每个步骤中表单的大小

非常感谢提前

4

2 回答 2

0

您可以通过添加以下 CSS 来实现。

<style type="text/css">
  body {margin:0; overflow: hidden;}
  iframe {border: none;}
</style>
<body> 
  <iframe height="100%" width="100%" 
   src="yourframe1.html"></iframe>
  <iframe src="yourframe2.html" 
   width="100%" height="100%"></iframe>
</body>
于 2020-06-15T04:39:00.040 回答
0

是的,将此属性添加到您的 iframe:

scrolling="no"

例子:

<iframe src="http://iFrameSource.com"  scrolling="no" style="width: 550px; height: 500px;  overflow: hidden;" ></iframe>

来源:从 iframe 中删除滚动条

于 2020-06-15T04:17:46.377 回答