如果没有 reCAPTCHA,我的页面看起来像这样(jsfiddle):
<html>
<body>
<div class="content_wrap">
<div class="left_container">
</div>
<div class="right_container">
<div style="background-color: blue; margin:0px; height: 1500px;">
<!--RECAPTCHA WOULD GO HERE-->
</div>
</div>
</div>
</body>
</html>
CSS:
body,html {
height: 100%;
width: 100%;
background-color: #f8f8f8;
}
div.content_wrap {
width: 100%;
position: relative;
}
div.left_container {
float:left;
position:absolute;
width: 220px;
min-height: 100%;
background-color: red;
}
div.right_container {
position: relative;
padding: 0px;
margin-left: 220px;
width: 1000px;
}
</p>
使用 reCAPTCHA(在蓝色区域),整个页面内容的高度在底部减少了约 20 像素,并带有可见的空白条。
有没有人在 reCAPTCHA 更改布局元素时遇到问题?