This is displayed in IE 11, UI does not display scroll barCSS屬性 「溢出:滾動」 在IE 11
This is displayed in chrome, UI display scroll bar
不能顯示滾動條的CSS代碼是如下:
.r-listbox {
overflow:scroll;
width: 200px;
display: table-cell;
min-height: 1px;
padding-left: 10px;
margin-left: 200px;
margin-top: -10px;
}
.r-listbox
{
-ms-overflow-style:scrollbar;
overflow:scroll;
width: 200px;
display: table-cell;
min-height: 1px;
padding-left: 10px;
margin-left: 200px;
margin-top: -10px; ``
}
也許你正在使用的觸摸IE11版本,所以滾動條被隱藏,但它們被激活。 –
可以分享你的html代碼嗎? –