html - Border-radius changing in Chrome -


when use border-radius on div wrapping ul, after hovering links inside ul, i'm losing radius in chrome.

<div class="menu"> <div class="middle">     <ul class="bmenu">         <li><a href="#home"/>home</a></li>         <li><a href="#cv"/>cv</a></li>         <li><a href="#projects"/>projects</a></li>         <li><a href="#contact"/>contact</a></li>     </ul> </div> </div> 

here example: http://jsfiddle.net/tygp6/

can help?

under bmenu class, have remove position:relative.

.bmenu{/*position:relative;*/} 

i have updated same here. can have look. hope helps.


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -