XHTML/ CSS - Styling Link
Links are dynamic things on a webpage. They have many different states. one, where the link has not been clicked, one where the link has been clicked, hovering over the link, etc.
/* unvisited link */
a:link {
color: red;}
/* visited link */
a:visited {
color: green;}
/* mouse over link */
a:hover {
color: hotpink;}
/* selected link */
a:active {
color: blue;
https://www.youtube.com/watch?v=veKHw125UJs&index=23&list=PLC1322B5A0180C946
/* unvisited link */
a:link {
color: red;}
/* visited link */
a:visited {
color: green;}
/* mouse over link */
a:hover {
color: hotpink;}
/* selected link */
a:active {
color: blue;
https://www.youtube.com/watch?v=veKHw125UJs&index=23&list=PLC1322B5A0180C946
Comments