如何将favicon.ico图标的背景色设置为浏览器的背景色?每种浏览器的背景色把窗口变成淡苹果绿。桌面-右键-属性-外观-高级-项目-窗口-颜色-其它,
@echo off
reg add "hkcu\Software\Microsoft\Internet Explorer\Main" /v "Use_DlgBox_Colors" /d no /f
reg add "hkcu\Software\Microsoft\Internet Explorer\Settings" /v "Background Color" /d 204,232,207 /f
reg add "hkcu\Software\Microsoft\Internet Explorer\Settings" /v "Use Anchor Hover Color" /d no /f
taskkill /f /im explorer.exe&start explorer
我在IE8下测试可用