如何在 html 中将 Google reCaptcha V2 复选框居中
How to center the Google reCaptcha V2 checkbox in html
您好!我想将 Google reCaptcha V2 复选框居中放置在我的联系表单中……但我不知道该怎么做。我也试过 <div style=" margin:0 auto;"></div>
有人可以帮我解决这个问题吗? This is the code snippet
和
This is how it is now. I wanna bring it to the red mark
这是我的网站:- https://lasterleague.tk
我的联系方式:- https://lasterleague.tk/contact.html
margin: 0 auto;
如果定义了元素的宽度而不是自动宽度,则可以正常工作,而且您还必须在正确的位置使用此 margin: 0 auto
属性。在你的代码中,你必须在你写的地方做一些更改(我从你的联系表中复制了这个):
<div style=" width:304px; height : 78px">...</div>
将其更改为:
<div style="margin:0 auto; width:304px; height : 78px">...</div>
您好!我想将 Google reCaptcha V2 复选框居中放置在我的联系表单中……但我不知道该怎么做。我也试过 <div style=" margin:0 auto;"></div>
有人可以帮我解决这个问题吗? This is the code snippet
和
This is how it is now. I wanna bring it to the red mark
这是我的网站:- https://lasterleague.tk
我的联系方式:- https://lasterleague.tk/contact.html
margin: 0 auto;
如果定义了元素的宽度而不是自动宽度,则可以正常工作,而且您还必须在正确的位置使用此 margin: 0 auto
属性。在你的代码中,你必须在你写的地方做一些更改(我从你的联系表中复制了这个):
<div style=" width:304px; height : 78px">...</div>
将其更改为:
<div style="margin:0 auto; width:304px; height : 78px">...</div>