我再次閱讀了許多關於此主題的文章,但沒有一個建議的解決方案可行。我現在有我的解決方案,但是,不知道它爲什麼會起作用,並希望得到一些見解。讓div可滾動無滾動條
下面是該解決方案遍佈SO: Hide scroll bar, but while still being able to scroll
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>Testing</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
</head>
<body>
<div class="hidden-xs hidden-sm col-md-3" id="parent">
<div id="child">
Test text here
</div>
</div>
</body>
</html>
CSS
#parent {
padding: 0px;
border-width: 1px;
border-style: solid;
height: calc(100vh);
overflow: hidden;
}
#child {
width: 100%;
height: 100%;
overflow-y: scroll;
padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
}
以上不爲我工作的滾動條仍然可見。但是,我在頁面上找到了一個父元素「box-sizing」的屬性,當更改爲「border-box」以外的任何內容時,滾動條消失並且滾動按預期工作。
根據瀏覽器,這個CSS來自bootstrap.Sass寶石。
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
我的兩個問題是: 1)爲什麼會出現這種情況? 2)如何在我的CSS文件中關閉它?
尼斯的答案,它應該有一個'!important'只是爲了確保它不會被覆蓋,我認爲他/她希望它是'內容box',而不是'邊境-box'。 – MarioE
使用框大小:content-box;沒有!重要的工作。 – Dercni