Update text color when mouse hover
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>*KHAKI*</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style rel="stylesheet" type="text/css"> .menu ul li { line-height: 1.8em; margin: 0 10px 0 0; padding: 0; list-style-type: square; color: #BA3F2F; background: inherit; } .menu ul li a { color: #BA3F2F; background: inherit; } .menu ul li a:hover { color: #7ABA2E; background: inherit; } </style> </head> <body> <div class="menu"> <ul> <li><a href="">A</a></li> <li><a href="">B</a></li> <li><a href="">C</a> </li> <li><a href="">E</a></li> <li><a href="">F</a></li> <li><a href="">G </a> </li> </ul> </div> </body> </html>