我想更改Typeform Button(嵌入)的位置或至少更改通过typeform高度获得的iframe 预先感谢
您可以在此问题中看到我的文章 Cannot select iframe loaded
var iframe = document.querySelector('iframe[src*="typeform"]');
我希望按钮能高一点,但默认设置不是期望的
我在下面添加了答案 原始帖子 Cannot select iframe loaded
答案 0 :(得分:2)
我已经使用3级选择器解决了这个问题 希望能帮助其他人
iframe[src*="typeform"] {
min-height: 94% !important;
max-height: 94% !important;
}