繁体   English   中英

::-webkit-scrollbar 不适用于 IE

[英]The ::-webkit-scrollbar is not working for IE

我使用::-webkit-scrollbar CSS 选择器来减少水平滚动条的宽度,如下所示;

 ::-webkit-scrollbar { width: 2px; height: 2px; } ::-webkit-scrollbar-thumb { background-color:black; }
 <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Responsive Table</title> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous"> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> </head> <body> <table class="table table-responsive" style="font-size:45px"> <caption>This is a table</caption> <tr> <th>Subject</th> <th>GPA</th> <th>Subject</th> <th>GPA</th> <th>Subject</th> <th>GPA</th> <th>Subject</th> <th>GPA</th> <th>Subject</th> <th>GPA</th> <th>Subject</th> <th>GPA</th> </tr> </table> </body> </html>

它适用于 chrome,但不适用于 IE。 我尝试将mswebkit一起使用,但仍然没有改进!

IE/Edge 不支持

在此处输入图片说明

不幸的是,没有本地支持,但您可以尝试自定义 js 或 jquery 插件?。 这里有一些: jQuery Scrollbarperfect-scrollbarslimScrollNiceScroll

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM