Lessons Community Resources Tools

Hightlighted Link

This trick will highlight your text links, when the mouse passes over it.

Example:

This link will be highlighted when the mouse passes over it.

Code:

<HEAD>
<style type="text/css">
<!--
A:hover {background-color: orange}
-->
</style>
</HEAD>

The link can also be highlighted at all times. Use the following code for this effect.

Example:

This link is highlighted

Code:

<HEAD>
<style type="text/css">
<!--
A:link {background-color: orange}
-->
</style>
</HEAD>