Tricky Tricks ›› Programming Tricks ›› CSS Tricks ›› Text Links With Just Mouseover Colored Text

Text Links With Just Mouseover Colored Text

CSS Tricks

Text Links With Just Mouseover Colored Text:

Here is the CSS code to mouseover and change the color of text links. Place this CSS code between the <head> and </head> tags.

<style type="text/css">
<!--
A:hover { color: #ff0000 }
-->
</style>

Partners