Pseudo-Classes in CSS - Hover Effects

Introduction: This tutorial is on how to create hover over effects in CSS. HTML: For this, we need some basic HTML to style with our CSS...
  1.         <head>
  2.                 <style>
  3.  
  4.                 </style>
  5.         </head>
  6.         <body>
  7.                 <div class='hoverable'>
  8.                         <p>Here is some text.</p>
  9.                 </div>
  10.         </body>
  11. </html>
CSS: Now that we have some basic HTML elements, we want to give the elements some basic CSS styling...
  1. .hoverable {
  2.         width: 300px;
  3.         height: 60px;
  4.         text-align: center;
  5. }
Pseudo-Classes: There are certain classes within CSS (Pseudo-classes) which are similar to the effect of listeners in, for example, jQuery. This means that the classes are activated under certain conditions; the pseudo-class I will be using for this tutorial is 'hover' - this will be activated once the user's mouse enters the area of the element with the 'hover' pseudo-class. First we need to create our class with the extension of the 'hover' pseudo-class, we do this by writing the type of identifier (. for classes, # for IDs), followed by the class/ID name, followed by a colon (:) and then the name of the pseudo-class, in our case it's 'hover'...
  1. .hoverable:hover {
  2.        
  3. }
Now, once the user's mouse enters the area of any HTML element with the class of 'hoverable', the above 'hover' class would be activated. Let's simply write in a border for this effect...
  1. .hoverable:hover {
  2.         border-bottom: 1px solid #ffffff;
  3. }
This will give the .hoverable div a bottom border of solid white with a 1 pixel width once the user's mouse hovers over the element. Finished! Here is the full source...
  1.         <head>
  2.                 <style>
  3.                     .hoverable {
  4.                         width: 300px;
  5.                         height: 60px;
  6.                         text-align: center;
  7.                     }
  8.  
  9.                     .hoverable:hover {
  10.                         border-bottom: 1px solid #ffffff;
  11.                     }
  12.                 </style>
  13.         </head>
  14.         <body>
  15.                 <div class='hoverable'>
  16.                         <p>Here is some text.</p>
  17.                 </div>
  18.         </body>
  19. </html>

Add new comment