简体   繁体   中英

How to center the Google reCaptcha V2 checkbox in html

Hi! I wanna center the Google reCaptcha V2 checkbox middle in my contact form... But I don't know how to do it. I also tried <div style=" margin:0 auto;"></div> Can someone please help me with this? This is the code snippet and This is how it is now. I wanna bring it to the red mark

This is my website:- https://lasterleague.tk

My contact form:- https://lasterleague.tk/contact.html

margin: 0 auto; will work fine if width of element is defined and not auto, and also you have to use this margin: 0 auto property in right place. In your code you have to make some changes where you have written (I copied this from your contact form):

<div style=" width:304px; height : 78px">...</div>

change it to :

 <div style="margin:0 auto; width:304px; height : 78px">...</div>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM