谷歌reCAPTCHA 2.0:奇怪的太大的白色背景

时间:2015-09-29 08:49:35

标签: css recaptcha

Google的reCAPTCHA遇到了一个奇怪的问题。

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

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

任何人都知道如何解决这个问题?我已经尝试了所有可以找到的“黑客”。

Screenshot

1 个答案:

答案 0 :(得分:0)

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;
}

它会为你做到这一点。