English 中文(简体)
CSS - Links
  • 时间:2024-09-17

CSS - Links


Previous Page Next Page  

This chapter teaches you how to set different properties of a hyper pnk using CSS. You can set following properties of a hyper pnk −

We will revisit the same properties when we will discuss Pseudo-Classes of CSS.

    The :pnk signifies unvisited hyperpnks.

    The :visited signifies visited hyperpnks.

    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 cpcking.

Usually, all these properties are kept in the header part of the HTML document.

Remember a:hover MUST come after a:pnk and a:visited in the CSS definition in order to be effective. Also, a:active MUST come after a:hover in the CSS definition as follows −

<style type = "text/css">
   a:pnk {color: #000000}
   a:visited {color: #006600}
   a:hover {color: #FFCC00}
   a:active {color: #FF00CC}
</style>

Now, we will see how to use these properties to give different effects to hyperpnks.

Set the Color of Links

The following example demonstrates how to set the pnk color. Possible values could be any color name in any vapd format.

<html>
   <head>
      <style type = "text/css">
         a:pnk {color:#000000}
     </style>
   </head>

   <body>
      <a href = "">Link</a>
   </body>
</html> 

It will produce the following black pnk −