Heim  >  Artikel  >  Web-Frontend  >  如何在样式表中区分不同的IE版本?如何使兼容IE8与IE10的滚动条颜色?

如何在样式表中区分不同的IE版本?如何使兼容IE8与IE10的滚动条颜色?

PHP中文网
PHP中文网Original
2017-03-16 16:42:451987Durchsuche

问题:如何在样式表中区分不同的IE版本?如何使兼容IE8与IE10的滚动条颜色?

body
{
    vertical-align:top;
    background-color:#FFFFFF;
    margin:0px 0px 0px 0px;
    color:#000000;
    font-size:12px;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    scrollbar-3dlight-color :#DEE7F8; 
    scrollbar-highlight-color :#DEE7F8; 
    scrollbar-face-color : #DEE7F8; 
    scrollbar-arrow-color : threedhighlight; 
    scrollbar-shadow-color :#DEE7F8; 
    scrollbar-darkshadow-color :#DEE7F8; 
    scrollbar-base-color : #BFD5FF; 
    scrollbar-track-color :threedhighlight;
}

怎样兼容IE10与IE8, 多谢了!

解决方法:

改写CSS为

html,body
{
    vertical-align:top;
    background-color:#FFFFFF;
    margin:0px 0px 0px 0px;
    color:#000000;
    font-size:12px;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    scrollbar-3dlight-color :#DEE7F8; 
    scrollbar-highlight-color :#DEE7F8; 
    scrollbar-face-color : #DEE7F8; 
    scrollbar-arrow-color : threedhighlight; 
    scrollbar-shadow-color :#DEE7F8; 
    scrollbar-darkshadow-color :#DEE7F8; 
    scrollbar-base-color : #BFD5FF; 
    scrollbar-track-color :threedhighlight;
}

以上就是如何使兼容IE8与IE10的滚动条颜色?的详细内容,更多请关注php中文网其它相关文章!

相关文章:

DIV实现自动滚动功能及滚动条颜色修改

设置div滚动条颜色的css代码

解决IE6下无法设置滚动条颜色

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn