不存在我的項目需要我申請這對我的CSS滾動條定製效果在IE和Firefox
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background-color: #FFFFFF;
} /* the new scrollbar will have a flat appearance with the set background color */
::-webkit-scrollbar-thumb {
background-color: rgba(242,91,32,0.9);
} /* this will style the thumb, ignoring the track */
::-webkit-scrollbar-corner {
background-color: #FFFFFF;
}
滾動條(圖像給出),
但是當我打開網頁只鉻是顯示效果Firefox(27.0.1)和Internet Explorer(10for)沒有響應這些變化。我必須添加什麼才能使它們變得統一?
firefox不是一個webkit瀏覽器,你可能想使用jQuery/JavaSceript填充 –
是「polyfill」我需要使用的東西? –
http://stackoverflow.com/questions/9945547/how-to-create-a-custom-scrollbar-on-a-div –