Search code examples
cssrecaptchacenter

Centering No Captcha reCaptcha


After a few hours of research and trial and error, I was finally able to add the new Google No Capatcha re Capatcha to my form and get it working, but for some reason, it won't center. Any ideas?

<!-- reCapatcha -->
<div id="capatcha">
    <div class="g-recaptcha" data-sitekey=""></div>
</div>


#capatcha {
    margin: 0 auto;
    display: block
}

Solution

  • I went with:

    <style>
        /* already defined in bootstrap4 */
        .text-xs-center {
            text-align: center;
        }
    
        .g-recaptcha {
            display: inline-block;
        }
    </style>
    <div class="text-xs-center">
        <div class="g-recaptcha" data-sitekey=""></div>
    </div>