使用mac上的Safari的时候,白色背景太刺眼了,希望可以改变背景色。
方法如下:
- 建立一个safari的css文件,内容如下
html {zoom:1.5}
/* force body background color */
body {
background: #C7EDCC ! important ;
}
颜色代码为 #C7EDCC,保护眼睛的绿豆沙色,可以利用文本编辑进行修改。其中第一行html{zoom:1.5} 是改变safari的默认缩放比例,不需要的封釉可以删除这行,也可以将1.5(放大1.5倍)调节成1.2 (放大1.2倍)或者1(不缩放)。后面几行是强制改变网页的样色,本设定设为绿豆沙色。 - 进入safari-偏好设置-高级-样式表-选择safariN.css
- 重启safari;
新建css文件的方法
打开文本编辑,拷贝下面的内容
html {zoom:1.5}
/* force body background color */
body {
background: #C7EDCC ! important ;
}保存为txt格式,比如temp.txt
改名为temp.css
参考资料
http://bbs.feng.com/forum.php?mod=viewthread&tid=8510119&extra=page=1&filter=typeid&typeid=157&typeid=157
保护色
http://jingyan.baidu.com/article/066074d6837162c3c21cb02d.html