not just the code below for the frame
-moz-border-radius: 2px 2px 15px 15px;
In order for the radius to be applied clockwise, starting from the upper left corner, you cannot do this for Webkit at the moment. Therefore, you need to write a long arm like:
-webkit-border-top-left-radius: 2px; -webkit-border-top-right-radius: 2px; -webkit-border-bottom-left-radius: 15px; -webkit-border-bottom-right-radius: 15px;
source share