I've encountered an issue where using border-radius on a DIV that wraps a UL causes the radius to be lost in Chrome after hovering over the links inside the UL.
<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>
For reference, here is an example: http://jsfiddle.net/TYgP6/
If anyone has a solution or workaround for this issue, it would be greatly appreciated!