2017-03-03 169 views
0

在我的網站上我有一個谷歌reCaptcha,它只是讓我的登錄表單看起來非常難看。獲取reCaptcha的寬度並使用它設置文本字段寬度?

下面是截圖

enter image description here

所以我環顧四周,發現一個網站,登錄表單這樣

enter image description here

這看起來非常好,這是充分響應和所有。我很想好辦法做到這一點?還沒有真正能夠找到任何關於如何使用谷歌reCaptcha做到這一點的例子。

回答

1

可以通過使用表,並設定爲此text-box寬度100%

例如代碼:

<table> 
      <tr><td> 
       <input type="text" style="width:100%;"><br> 
      </tr></td> 
      <tr><td> 
       <input class="scaleR" type="text" style="width:100%;"><br></tr></td> 
      <tr><td> 
       <div class="g-recaptcha" data-sitekey="SITE_KEY" data-callback="checked"></div> 
      </tr></td> 
     </table> 

結果:

enter image description here