View Full Version : link background


alkaline39
03-29-2003, 12:03 AM
how do you add a background to when you hover over a link the area around it changes to a color?

Alcy
03-29-2003, 02:00 AM
<style type="text/css">
a:hover
{
background-color:#000000;
}
</style>

Or if you want a background image,
<style type="text/css">
a:hover
{
background-image:url("image.gif");
}
</style>

alkaline39
03-29-2003, 02:35 AM
thank you