2
我有一個div標籤,當它填充時會顯示一個滾動條,但是我面對的問題是我無法查看滾動條的底部箭頭,它會在我的頁腳下方顯示我調整其顯示的頁腳上面我的CSS是這樣的滾動條底部箭頭不可見
html {
height:100%;
}
body {
height: 100%;
overflow: hidden;
}
div#content-wrapper {
voice-family: "\"}\"";
voice-family:inherit;
margin-top:102px;
margin-left:127px;
margin-bottom: 30px;
height: 100%;
overflow: auto;
}
body>div#content-wrapper {
margin-left:127px;
}
div#content {
margin:0 auto;
min-height: 100%;
}
和內容在下面的div加載
<div id="content-wrapper">
<div id="content">
</div>
</div>
調整高度:100%;在內容包裝到某些像素解決了正常模式下的問題,但是當它被拖拽到全屏模式時,它會顯示灰色空間 – Prashant