Layout Options

  • Fixed Header
    Makes the header top fixed, always visible!
  • Fixed Sidebar
    Makes the sidebar left fixed, always visible!
Pseudo Hover

Description

The :hover pseudo-class matches link elements which have the cursor hovered them.

This selector has the form:

:hover {
  declaration block
}

Examples

This example shows how to set the font color of all hovered HTML links to red.

a:hover {
  color:red;
}

This example sets specific colors for various link states.

a:link {color:#FF0000}
a:visited {color:#00FF00}
a:hover {color:#FF00FF}
a:active {color:#0000FF}

Browser Support

Chrome Firefox IE Safari Opera

Miscellaneous Information

Inherited: Yes
Defined In: CSS1