我试图将此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>
我想知道是否有一种方法可以删除表单的滚动条,而只有浏览器搜索器?显然,根据每个步骤中表单的大小,页面会得到更长的滚动
提前谢谢你
发布于 2020-06-15 12:17:46
是的,将这个属性添加到你的iframe中:
scrolling="no"示例:
<iframe src="http://iFrameSource.com" scrolling="no" style="width: 550px; height: 500px; overflow: hidden;" ></iframe>发布于 2020-06-15 12:39:00
你可以通过添加下面的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>https://stackoverflow.com/questions/62381242
复制相似问题