I see the hover/mouseover effect but no menus pop out.
The INS, inside of an A tag does pass validation - I think because they are both inline elements. So, my thought process was that when you hovered over the A tags it would trigger the :hover CSS. Then if I set up a child element (ie. #menubar a:hover ul { display:block; } that it would appear.
It works in FF but not IE still (even though the :hover is on the A tag).
I was just wondering if there was something else that I could do?
I thought, if it worked, that it would be a good solution because there is no behaviors or javascript involved.
SIDE Question: I'm assuming that you designed that website... If so, why you you have the following code:
HTML Code:
margin-bottom: -2px;/*value for IE5.5*/
margin-bottom:/**/ -5px;/*Value for IE5.01*/
ma\rgin-bottom: -2px;/*value for IE6*/
margin-bottom: 2px;
Do the different IE versions render the margins differently?? If so, is IE5.01 always add 3px's to a margin?
|