Google reCaptcha 删除元素

Google reCaptcha remove element

所以我已经为我的网站安装了 Google reCaptcha,一切都很好,因为它不允许我在页面的中心对齐它,我能看到的唯一原因是默认它给 div 元素 304px 的宽度。

当我使用 Google 开发人员工具删除它,然后给 div 元素文本对齐中心时,它会将 reCaptcha 对齐在我页面的中心,但是 div做这一切没有我可以覆盖的 class 并且我无法编辑 div 因为它内置在 reCaptcha 中。

有什么想法吗?

我很感激任何帮助

谢谢, Ste

添加

.g-recaptcha > div > div{ margin-left:auto; margin-right:auto;}

您可以使用此代码:

.g-recaptcha{
  margin: 15px auto !important;
  width: auto !important;
  height: auto !important;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -o-center;
  text-align: -ms-center;
}

对我有用。