Saving for myself: duplicating fieldset rounded corners in FF and Safari

Sep 21, 2010 14:15

CSS to duplicate IE rounded corners on fieldsets in Firefox and Safari:

-moz-border-radius-bottomleft: 7px;
-moz-border-radius-bottomright: 7px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 7px;
-webkit-border-radius: 7px;
border-radius: 3px;

Note: may also be able to be used to put rounded corners on divs in FF and Safari. But fieldsets are the only way to achieve rounded corners in IE using easy html/css.

coding

Previous post Next post
Up