當我設置overflow: scroll
到一個div,我期待有一個滾動條,即使內容不滾動(設計目的)溢出:滾動不顯示被禁用的滾動Chrome移動
,但是當有無需滾動,Chrome移動器無論如何都隱藏了滾動條。
.div-scroll{
background-color: red;
height: 300px;
overflow-y: scroll;
}
.div-inner {
background-color: blue;
height: 200px;
}
<div class="div-scroll">
<div class="div-inner">
</div>
</div>
我想顯示在移動版Chrome禁用滾動時的內容不滾動,或至少一種方法從純CSS知道它不滾動,避免使用width: calc(100% - 17px);
小提琴:https://jsfiddle.net/2uf54kgm/2/ – Lucas