Menu

Galera montei um menu do estilo drop drown ele esta perfeito no Fire Fox mais no lixo do IE 6 ele não funciona alguém pode me ajudar no que posso fazer no css para funcionar no IE com funcina no Fire Fox

aqui esta o css.


ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
}

ul li {
	position: relative;
	height: 31px;
}

li ul {
	position: absolute;
	left: 149px;
	top: 0;
	display: none;
	width: 150px;
}

ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
}


* html ul li {
	float: left;
}

* html ul li a {
	height: 1%;
}

/* End */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
	border-bottom: 1px solid #ccc;
}




li:hover ul ul{ 
display:none; 
}

li:hover ul, li li:hover ul, li.over ul, 
li li.over ul { 
display: block; 
} 




* html ul li {
	float: left;
	height: 1%;
}

* html ul li a {
	height: 1%;
}

Olá!!

O que acontece exatamente?
O menu não aparece?
Se for isso, já tive alguns problemas deste tipo. Utilize o atributo “z-order” que define a “profundidade” dos componentes.
No caso do IE, você terá que trazê-lo para frente.

Abraços!!

Consegui resolver galera valeu esta ai para alguém se tiver o mesmo problema


.header {
	color: blue;
	width: 100%;
}

.labelCor {
	font-family: Arial, Verdana, sans-serif;
	font-size: 15px;
	font-weight: bold;
	color: blue;
	margin-left: 11px;
	position: relative;
	text-align: center;
}

.login {
	background: #e4eaf1;
	width: 380px;
	height: 150px;
	border: 1px solid black;
}

.button {
	width: 100px;
	height: 21px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent url("../imgs/button.gif") no-repeat center top;
	cursor: pointer; /* hand-shaped cursor */
	cursor: hand; /* for IE 5.x */
}

.buttonBig {
	width: 170px;
	height: 21px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent url("../imgs/buttonBig.gif") no-repeat center
		top;
	cursor: pointer; /* hand-shaped cursor */
	cursor: hand; /* for IE 5.x */
}

.label {
	font: normal normal normal 12px verdana, arial;
}

.labelObrigatorio {
	font: normal normal normal 12px verdana, arial;
	font-weight: bold;
	color: red;
}

.img {
	border: 0;
}

/* CSS Menu*/
.menu,.menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu {
	width: 200px;
}

.menu li {
	margin: 0;
	padding: 0;
	margin-bottom: 1px;
}

.menu a {
	display: block;
	padding: 2px 5px;
	color: #FFFFFF; /* cor Letras*/
	background: #0000CD; /*Cor opçao escolha*/
	text-decoration: none;
}

.menu a:hover {
	background: #FF0000;
}

.menu ul li {
	padding-left: 15px;
}

.menu ul a {
	background: #0000CD;
}

.hidden {
	display: none;
}

/* Menu Novo */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
}

ul li {
	position: relative;
	height: 31px;
}

li ul {
	position: absolute;
	left: 149px;
	top: 0;
	display: none;
	width: 150px;
}

ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	width: 150px;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li {
	float: left;
}

* html ul li a {
	height: 10%;
}

/* End */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
	border-bottom: 1px solid #ccc;
}

li:hover ul ul, li.over ul ul { 
display:none; 
}

li:hover ul, li li:hover ul, li.over ul, 
li li.over ul { 
display: block;
} /* Aqui a magica uahuahauhauh*/

li:hover ul, li.over ul { 
display: block;
}

* html ul li {
	float: left;
	height: 1%;
}

* html ul li a {
	height: 1%;
}
/* End */ 

e mais esse JavaScript na jsp


		function IEHoverPseudo() {
			var navItems = document.getElementById("primary-nav").getElementsByTagName("li");	
				for (var i=0; i<navItems.length; i++) {
					if(navItems[i].className == "menuparent") {
						navItems[i].onmouseover=function() { this.className += " over"; }
						navItems[i].onmouseout=function() { this.className = "menuparent"; }
					}
				}
			}
			window.onload = IEHoverPseudo;