Rounded corners in CSS (thanks to Paul for the links), including a very easy way to do it for gecko browsers.
Notice that the button, the box surrounding the table of contents, and the boxes surrounding the content and navigation sections all have rounded corners. The style for this is really simple:
-moz-border-radius: 10px 10px 10px 10px;The 4 numbers refer to UL, UR, LL, and LR corners, and the value is the curve radius. It seems you can apply this style to anything in the CSS box model. -- DaleBrayden - 18 Sep 2003