Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
}
share|improve this question

1 Answer

up vote 6 down vote accepted

The selector for webkit browsers (i.e. chrome) should be:

-webkit-border-top-left-radius:  4px;
-webkit-border-bottom-left-radius:  4px;
share|improve this answer
WOW... I've done this a thousand times. I can't believe I missed that. It did fix it though. Definitely goes to show how much an extra pair of eyes can help. Thanks! – Bms85smb Jun 30 '11 at 17:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.