Change background 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"> #navlist { padding: 4px 5px 4px 0; margin: 0 0 20px 0; text-align: left; letter-spacing: 3px; color: #fff; background: #7ABA2E; } #navlist li { list-style: none; margin: 0; display: inline; } #navlist li a { padding: 5px 0.75em; margin: 0; color: #fff; background: #7ABA2E; text-decoration: none; } #navlist li a:link { color: #fff; background: #7ABA2E; } #navlist li a:visited { color: #fff; background: #7ABA2E; } #navlist li a:hover { color: #fff; background: #BA3F2F; } #navlist li a#current { color: #fff; background: #BA3F2F; } </style> </head> <body> <ul id="navlist"> <li id="active"><a id="current" href="">HOMEPAGE</a></li> <li><a href="">ABOUT</a></li> <li><a href="">GALLERY</a></li> <li><a href="">PRODUCTS</a></li> <li><a href="">LINKS</a></li> <li><a href="">CONTACT</a></li> </ul> </body> </html>