div を overflow: scroll で設定しますが、div の幅を 100% に設定しているにもかかわらず、コンテンツがページの端からはみ出します。
#main {
background: #ccc;
height: 100%;
overflow: auto;
margin-top: -8px;
z-index: 1000;
padding-top: 4px;
float: right;
width: 100%;
min-height: 100%;
}
#main #chat {
padding-top: -1px;
padding-left: 0px;
margin-left: 210px;
height: 100%;
width: auto;
float: right;
min-height: 100%;
}
どうすればこれを並べ替えることができますか?