私がまとめているこのページに表示されている、明らかに不要な2番目の垂直スクロールバーを削除しようとしています。http://abchealth.info/doc-mike-special/test3/を参照してください。
ここでの私の調査により、CSSから「オーバーフロー」を削除しようとしましたが、これは私のレイアウトを完全に破壊したので、他に何も変更せずに内側の垂直スクロールバーを削除するソリューションを探しています...
よろしくお願いします!
これが私のCSSです:
/* Generated by KompoZer */
body {
background-image: url(http://abchealth.info/images/bg.png);
}
html, body {
margin: 0;
padding: 0;
height: 100%;
min-height: 100%;
}
div#wrap {min-height: 100%;}
div#mastercontainer {
overflow:auto; width: 100%;
height: 100%;
min-height: 100%;
}
div#header {
background-image: url(http://abchealth.info/images/header-bg.jpg); background-repeat:
repeat-x;
position: top; height: 96px;}
div#content {
}
div#innercontentmiddle {
margin: 0 auto;
width: 540px;
padding:10px; padding-bottom:510px;}
div#footerclear {
}
div#footer {
position:relative; margin-top: -510px; height: 510px; clear:both;
background-image: url(http://abchealth.info/images/footer-bg.jpg); background-repeat:
repeat-x;}
/*Opera Fix*/
body:before {
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/
}