Stylish: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (4個修訂) |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 16: | Line 16: | ||
@-moz-document domain("your.domain") { | @-moz-document domain("your.domain") { | ||
a:link {color:#00c !important;} | a:link {color:#00c !important;} | ||
a:visited {color: # | a:visited {color: #999 !important;} | ||
} | } | ||
| Line 23: | Line 23: | ||
相關文章 | 相關文章 | ||
* [http://userstyles.org/stylish/help Stylish quick guide | userstyles.org] | * [http://userstyles.org/stylish/help Stylish quick guide | userstyles.org] 說明文件 | ||
* [http://userstyles.org/ userstyles.org] | * '''推薦''' [http://userstyles.org/ userstyles.org] - 大量網友分享的樣式檔案 | ||
* [http://forum.moztw.org/viewtopic.php?p=83474#83474 Mozilla Taiwan 討論區: 用 Stylish 來自訂網頁樣式] | |||
* [http://wiki.moztw.org/index.php/Stylish Stylish - MoztwWiki] | |||
[[Category:Mozilla]] | [[Category:Mozilla]] | ||
Latest revision as of 14:36, 21 June 2009
Stylish allows easy management of user styles. User styles empower your browsing experience by letting you fix ugly sites, customize the look of your browser or mail client, or just have fun. via addons.mozilla.org
|
Stylish (freeware)
|
Case: 讓拜訪過的網址可以變色[edit]
部份網站設計的網址,點過之後不會變色,造成瀏覽困難。可以自行加入以下樣式,讓拜訪過的網址可以變色。(請將your.domain換成你想要的網站)
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("your.domain") {
a:link {color:#00c !important;}
a:visited {color: #999 !important;}
}
相關文章