Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS corner radius Re: CSS corner radius

#103999

You seem to be missing the webkit declaration for the bottom right corner on the live site.

By now you can safely drop the prefixes though. Also, it would be much more efficient to use the shorthand property.

All of this:

-moz-border-radius-topleft: 15px;
-moz-border-radius-topright: 15px;
-moz-border-radius-bottomright: 15px;
-moz-border-radius-bottomleft: 15px;
-webkit-border-top-left-radius: 15px;
-webkit-border-top-right-radius: 15px;
-webkit-border-bottom-left-radius: 15px;
-webkit-border-bottom right-radius: 15px;

Can simply be written as:

border-radius: 15px;