How to center reduced reCaptcha? HTML CSS -


how can center horizontally recaptcha box? why hard do? html:

<form method="post" action="form.php">              <label>email</label>    <input class="input" name="email" type="email" placeholder="email" required>                     <div class="g-recaptcha" data-sitekey="here key"></div>                </form> 

i made smaller css code:

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

just add padding-left: 25%; can in pixels. margin set auto; or text-align center


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -