Ayuda con este menu
Ayuda con este menu, quiero reemplazar cuando el cursor pase por los menu cambie a color Azul, y el mismo fondo de color blanco. Sin imagenes color hexadecimal. Gracias
<title>CSS Menu</title> <style type="text/css"> body { padding: 50px; } /* The CSS Code for the menu starts here */ #menu { font-family: Arial, sans-serif; font-weight: bold; text-transform: uppercase; margin: 50px 0; padding: 0; list-style-type: none; background-color: #eee; font-size: 13px; height: 40px; border-top: 2px solid #eee; border-bottom: 2px solid #ccc; } #menu li { float: left; margin: 0; } #menu li a { text-decoration: none; display: block; padding: 0 20px; line-height: 40px; color: #666; } #menu li a:hover, #menu li.active a { background-color: #f5f5f5; border-bottom: 2px solid #DDD; color: #999; } #menu_wrapper ul {margin-left: 12px;} #menu_wrapper {padding: 0 16px 0 0; background: url(images/grey.png) no-repeat right;} #menu_wrapper div {float: left; height: 44px; width: 12px; background: url(images/grey.png) no-repeat left;} </style> </head> <body> <!-- Grey Menu --> <div id="menu_wrapper" class="grey"> <div class="left"></div> <ul id="menu"> <li><a href="#">Home</a></li> <li class="active"><a href="#">About</a></li> <li><a href="#">Services</a></li> <li><a href="#">Products</a></li> <li><a href="#">Contact</a></li> </ul> </div> </body> </html>
1 Respuesta
Respuesta de ditman
1