私の問題は、バックグラウンド コンテナーが画面の下部までしか表示されないことです。その後の部分では見えません。私はほとんどすべてを試しましたが、何もうまくいかないようです。ページサイズに合わせて調整したい。
<body>
<div id="profilebg">
<!-- Other divs -->
</div>
</body>
そして私のCSSは
html, body {
    height:100%;
}
#profilebg
{
    position: absolute;
    margin-left:10%;
    margin-right:10%;
    width:80%;
    background-color:#ffffff;
    height: 100%;
    top: 0;
    bottom: 0;
    display: block;
}