|
CodeAve.com - CSS - Miscellaneous | |||
|
|
|||
| Text Hover Colors | ||||
|
|
||||
<html> <title>CodeAve.com/CSS - Text Hover Colors</title> <body bgcolor="#FFFFFF"> <!-- Utilizing the JavaScript onMouseOver and onMouseOut commands you can define color attributes for text when the mouse hovers over and off selected text --> <span onMouseOver = "this.style.color = '#FF0000';" onMouseOut = "this.style.color = '#000000';"> Four score and seven years ago our fathers <br> brought forth on this continent a new nation, <br> conceived in liberty and dedicated to the proposition <br> that all men are created equal. Now we are engaged in a <br> great civil war, testing whether that nation or any nation so <br> conceived and so dedicated can long endure. </span> </body> </html>
|
||||
|
|
||||