2017-10-20 1 views
-1

j'ai suivant css pour srollbar coin arrondi qui fonctionne perfectly pour navigateur Chromecomment ajouter scrollbar coin arrondi pour IE et le bord

.scrollbar { 
    height: 600px; 
    background: #f9f9f9; 
    overflow-y: scroll; 
    padding: 18px 30px 18px 30px; 
} 

#SearchPanel::-webkit-scrollbar-track { 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px; 
    background-color: #dddddd; 
} 

#SearchPanel::-webkit-scrollbar { 
    width: 12px; 
    background-color: #dddddd; 
} 

#SearchPanel::-webkit-scrollbar-thumb { 
    border-radius: 10px; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); 
    background-color: #646468; 
} 

mais le même css son ne s'applique pour IE et le bord.

J'ai aussi essayé avec ce

@media (-ms-high-contrast: none), (-ms-high-contrast: active) { 
    /* IE10+ CSS styles go here */ 
} 

cela ne fonctionne pas non plus.

Répondre

0

Exemple:

Vous pouvez essayer dans votre CSS:

@supports (-ms-accelerator:true) { 
#header { background-color: pink; } 
} 
+0

cela aussi ne fonctionne pas. est webkit-scrollbar-piste support IE ou bord –