Firefox使用stylish自定义网页背景

Firefox使用stylish自定义网页背景

1. 综述

  Firefox使用stylish自定义网页背景

2. 将网页背景调成护眼色

  引用链接:百度经验:怎样设置火狐的页面背景为护眼颜色

  Firefox下载stylish插件,新建样式,命名为“网页背景色”,内容为

1 body  {background-color:#C7EDCC !important;}
2 table {background-color:#C7EDCC !important;}
3 td    {background-color:#C7EDCC !important;}
4 a:link    {color:#000000!important;}     
5 a:visited {color:#00FF00!important;}
6 a:hover   {color:#0000FF!important;background:#00EE00!important;}
7 a:active  {color:#FF0000!important;background:#00EE00!important;}

  可能仅仅用上面的代码效果不是很好,可以再对其进行自定义,不过要学一点CSS。

  使用时我把第二行往后全删了,只留第一行。

原文地址:https://www.cnblogs.com/yongheng20/p/5522532.html