如何更改嵌入式Google表格或文档的大小,宽度和高度?我没有找到直接的答案。
答案 0 :(得分:0)
height和width参数需要放在iframe代码中,而不是URL中。
<iframe width=600 height=500 src=......></iframe>
使其最大化的方法是:
<iframe width="100%" height="100%" src="https://docs.google.com/spreadsheets/d/e/abcdddddddddddddddd/pubhtml?gid=96612680&&single=true&widget=true&headers=false&chrome=true"</iframe>
或具有样式属性:
<iframe style="width:100%; height:100%;" src=......"></iframe>