如何最大化嵌入式Google表格或文档的大小,宽度和高度?

时间:2019-01-01 22:27:28

标签: iframe

如何更改嵌入式Google表格或文档的大小,宽度和高度?我没有找到直接的答案。

1 个答案:

答案 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&amp&single=true&amp;widget=true&amp;headers=false&chrome=true"</iframe>

或具有样式属性:

<iframe style="width:100%; height:100%;" src=......"></iframe>