CSS - Links - Printable Version +- Forums.Likebd.Com (http://forums.likebd.com) +-- Forum: English Forums (http://forums.likebd.com/forumdisplay.php?fid=134) +--- Forum: Design and Development (http://forums.likebd.com/forumdisplay.php?fid=233) +---- Forum: CSS (http://forums.likebd.com/forumdisplay.php?fid=236) +---- Thread: CSS - Links (/showthread.php?tid=3316) |
CSS - Links - Hasan - 06-28-2018 This tutorial will teach you how to set different properties of a hyper link using CSS. You can set following properties of a hyper link: We will revisit same properties when we will discuss Pseudo-Classes of CSS. The :link Signifies unvisited hyperlinks. The :visited Signifies visited hyperlinks. The :hover Signifies an element that currently has the user's mouse pointer hovering over it. The :active Signifies an element on which the user is currently clicking. Usually these all properties are kept in the header part of HTML document. RE: CSS - Links - Hasan - 06-28-2018 <style> a:link {color: #000000} a:visited {color: #006600} a:hover {color: #FFCC00} a:active {color: #FF00CC} </style> |