I have the following problem in webkit browsers. You can see the white corner in webkit browsers: http://www.webgarten.ch/round.jpg
I have the following code:
ul#pronav li .sub {
position:absolute;/*--Important--*/
top:29px;
left:0;
z-index:-1;
background:#fff;
float:left;
display:none;
border: 4px solid rgba(195, 173, 152, 0.2);
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
-moz-border-radius: 0 0 20px 20px;
-webkit-border-radius: 0 0 20px 20px;
border-radius: 0 0 20px 20px;
behavior: url(../../PIE/PIE.htc);
}
It seems a bug in webkit. I just couldn't find any solution for that :-(
Regards - Oli