ReCaptcha API v2 Styling

前端 未结 18 1860
孤城傲影
孤城傲影 2020-11-28 02:59

I have not had much success finding how to style Google\'s new recaptcha (v2). The eventual goal is to make it responsive, but I am having difficulty applying styling for ev

18条回答
  •  感动是毒
    2020-11-28 03:36

    Unfortunately we cant style reCaptcha v2, but it is possible to make it look better, here is the code:

    Click here to preview

    .g-recaptcha-outer{
        text-align: center;
        border-radius: 2px;
        background: #f9f9f9;
        border-style: solid;
        border-color: #37474f;
        border-width: 1px;
        border-bottom-width: 2px;
    }
    .g-recaptcha-inner{
        width: 154px;
        height: 82px;
        overflow: hidden;
        margin: 0 auto;
    }
    .g-recaptcha{
        position:relative;
        left: -2px;
        top: -1px;
    }
    
    

提交回复
热议问题