如何使用css更改google recaptcha width box?

时间:2017-04-19 06:49:30

标签: html css recaptcha

如何使用css更改google recaptcha width box?

我尝试更改google recaptcha width box,但无法正常工作,我该怎么办?

http://codepen.io/anon/pen/RVrPVx

<script src='https://www.google.com/recaptcha/api.js'></script>
<div id="recaptcha" class="g-recaptcha" data-sitekey="6Lc7JBAUAAAAANrF3CJaIjt7T9IEFSmd85Qpc4gj"></div>

1 个答案:

答案 0 :(得分:5)

您可以在此处使用转换属性。 您还可以查看示例here

.g-recaptcha {
  transform: scale(2);
  transform-origin: 0 0;
}

&#13;
&#13;
.g-recaptcha {
  transform: scale(2);
  transform-origin: 0 0;
}
&#13;
<script src='https://www.google.com/recaptcha/api.js'></script>
<div id="recaptcha" class="g-recaptcha" data-sitekey="6Lc7JBAUAAAAANrF3CJaIjt7T9IEFSmd85Qpc4gj"></div>
&#13;
&#13;
&#13;

Codepen示例here