mongkon mamiw
mongkon mamiw

Reputation: 189

How to change google recaptcha width box using css?

How to change google recaptcha width box using css ?

I tried to change google recaptcha width box, but not work , how can i do ?

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>

Upvotes: 1

Views: 12965

Answers (1)

Sahil Dhir
Sahil Dhir

Reputation: 4240

You can use transform properties here . You can also check the example here

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

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

Codepen example here.

Upvotes: 8

Related Questions