I'm having an issue with Chrome ignoring the rounded corners of my menu on hover. This works in Firefox as well as to round the corners (in chrome) before the hover, however on hover my corners square up. Am I missing something? My HTML consists of a standard ul.
#nav > ul > li:first-child a:hover {
-moz-border-radius-bottomleft: 4px;
-webkit-border-radius-bottomleft: 4px !important;
-border-bottom-left-radius: 4px !important;
-moz-border-radius-topleft: 4px;
-webkit-border-radius-topleft: 4px !important;
-border-top-left-radius: 4px !important;
background: url(../images/menu-back-hover.png) repeat-x;
}