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がレイアウトの要素を変更することに問題があった人はいますか?