Yahoo 知識+ 將於 2021 年 5 月 4 日 (美國東岸時間) 停止服務,而 Yahoo 知識+ 網站現已轉為僅限瀏覽模式。其他 Yahoo 資產或服務,或你的 Yahoo 帳戶將不會有任何變更。你可以在此服務中心網頁進一步了解 Yahoo 知識+ 停止服務的事宜,以及了解如何下載你的資料。
How can I adjust the color of the links I have been to on Chrome or Firefox?
Untouched links are blue, once I've clicked on them, they become purple. But the two colors are so similar I have a really hard time telling them apart. I've prowled through both browsers' setting but have not found where to change this. I have tried different "themes" but to no avail.
1 個解答
- ?Lv 72 年前最愛解答
The Colors are set by the designer of the web page. You can't change them.
Now if your the designer, here is the code.
CSS code:
/* visited link */
a:visited {
color: black;
}
/* mouse over link */
a:hover {
color: red;
text-decoration: underline;
font-size:100%;
}
/* selected link */
a:active {
color: black;
}