您的位置:首页 > Web前端 > HTML

解决web标准中IE无法设置滚动条颜色的问题

2009-08-25 15:04 489 查看
4000
解决办法是将body换成html,您可以在下面的代码中把CSS样式中的body修改运行测试.

以下是HTML网页特效代码,点击运行按钮可查看效果:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh" lang="zh">
<head profile="http://www.w3.org/2000/08/w3c-synd/#">
<meta http-equiv="content-language" content="zh-cn" />
<meta http-equiv="content-type" content="text/html;charset=gb2312" />
<title>blueidea</title>
<style type="text/css">
/*<![CDATA[*/
body {
 scrollbar-face-color:#f6f6f6;
 scrollbar-highlight-color:#fff;
 scrollbar-shadow-color:#eeeeee;
 scrollbar-3dlight-color:#eeeeee;
 scrollbar-arrow-color:#000;
 scrollbar-track-color:#fff;
 scrollbar-darkshadow-color:#fff;
 }
/*]]>*/
</style>
</head>
<body>
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
</body>
</html>
欢迎访问飞天站长WEB开发社区,http://www.feeten.cn
   [提示:可先修改代码再按运行]

文章来源:飞天站长WEB开发社区(www.feeten.cn) 详文参考:http://www.feeten.cn/html/WebPage/01/20090104000905918350.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐