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

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -