Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

onmouseover

Status
Not open for further replies.

discusmania

IS-IT--Management
Oct 24, 2000
158
AP
hi....

when the user bring the mouse on the text iwant the text to be change color.

how to do that?

thanks
 
Hi Check this code

<html>
<head>
<title> new document </title>

<style>
A:hover
{
COLOR: red;
TEXT-DECORATION: none
}

</style>
</head>

<body bgcolor=&quot;#ffffff&quot;>
<a href=# >reddy</a>
</body>
</html>


is this right??

BReddy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top