Here is a simple HTML with what I thought would be simple CSS (note that two items are links and two are not):
<html>
<head>
<style>
li.menu:hover {
background-color: #0ff;
}
li.menu a {
background-color: #0f0;
}
li.menu a:hover {
background-color: #00f;
}
</style>
</head>
<body>
<ul>
<li class="menu"><a>item1</a></li>
<li class="menu"><a>item2</a></li>
<li class="menu">item3</li>
<li class="menu">item4</li>
<ul>
</body>
</html>
Now, in Firefox, this works as I expected, but in Chrome (v24) it doesn't.
I would expect item1 and item2 to have #0f0 (green) color when not hovered above, and #00f (blue) color when hovered. But they are always green (in Chrome)! So why :hover works for item3 and item4, but not for item1 and item2?
Is there a way which will also work in Chrome, and still be this simple?
