Hyperlink font color settings are set by CSS, a link color settings commonly used in the following two kinds, 1, hyperlink A's initial state color, 2, hyperlink font mouse over color, there are two diseases are not used: 3, the hyperlink font of the visited color, 4, the hyperlink font when the mouse button color
The CSS properties corresponding to the four hyperlinks states are: a{}, a:hover{}, a:visited{}, a:active{}, usually only a{}, a:hover{}, if you need two other font color settings please refer to the order to write
a{color:red;} A:visited{color:green;} a:hover {color:yellow;background:blue;} a:active {color:lime;background:red;}
Here's an additional font color setting technique: When the text is selected with the font and background color (default to white on blue), this default effect can be changed by using the settings below.
::-moz-selection {background: #d3d3d3; color: #555;}::-webkit-selection {background: #d3d3d3; color: #555;}::selection {background: #d3d3d3; color: #555;} /* Text selected later color */
Hyperlink font color settings (via Html/css setting method)