Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/34.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css Google reCAPTCHA 2.0:奇怪的太大的白色背景_Css_Recaptcha - Fatal编程技术网

Css Google reCAPTCHA 2.0:奇怪的太大的白色背景

Css Google reCAPTCHA 2.0:奇怪的太大的白色背景,css,recaptcha,Css,Recaptcha,我们在谷歌的reCAPTCHA上遇到了一个奇怪的问题 如果向下滚动到最底部,您可以看到问题 一切都很好,但出于某种原因,它下面有一个奇怪的白色背景 有人知道怎么解决这个问题吗?我已经尝试了所有我能找到的“黑客” 在您的CSS文件中,您编写为: .textbox iframe, .textbox embed { max-width: 100% !important; height: 380px !important; /* and this height is causing th

我们在谷歌的reCAPTCHA上遇到了一个奇怪的问题

如果向下滚动到最底部,您可以看到问题

一切都很好,但出于某种原因,它下面有一个奇怪的白色背景

有人知道怎么解决这个问题吗?我已经尝试了所有我能找到的“黑客”


在您的CSS文件中,您编写为:

.textbox iframe, .textbox embed {
    max-width: 100% !important;
    height: 380px !important; /* and this height is causing the extra white background */
}
要覆盖此选项,您可以执行以下操作:

.g-recaptcha iframe {
   height: 100% !important;
}

它会帮你的。

忘了吧!谢谢你。@vivekkupadhyay你是个天才,救了我一天。