如何使用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>
答案 0 :(得分:5)
您可以在此处使用转换属性。 您还可以查看示例here
.g-recaptcha {
transform: scale(2);
transform-origin: 0 0;
}
.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;
Codepen示例here。