|
CSS Tricks
Text Links With Background Color Highlight:
Here is the CSS code to mouseover and put a background color behind text links. Place this CSS code between the <head> and </head> tags.
<style type="text/css">
<!--
A:hover { color: #ff0000; background-color: #ffff00; }
-->
</style>
|