Most designers prefer rounded corner especially when design a Web 2.0 websites. The trend become popular as desingers explore on techniques to create various kind of rounded corners.
Although founded so many ways to do that, some find it hard and buggy in some browsers. Now there's CSS 3 that finds another method to make rounded corners using css codings.
To give a 5 pixel border radius, the proprietary CSS property would look like:
-moz-border-radius: 5px;
-khtml-border-radius: 5px;
-webkit-border-radius: 5px;
We use various property like for example, -moz-border-radius property is use by Firefox browser.
Such specific codes are not compatible by all browsers so make sure to adapt a design that will be good if non-rounded is rendered by older browsers. Anyway, just to forethought the compatibility of some future browsers, this will give you a good shot.
Although founded so many ways to do that, some find it hard and buggy in some browsers. Now there's CSS 3 that finds another method to make rounded corners using css codings.
To give a 5 pixel border radius, the proprietary CSS property would look like:
-moz-border-radius: 5px;
-khtml-border-radius: 5px;
-webkit-border-radius: 5px;
We use various property like for example, -moz-border-radius property is use by Firefox browser.
Such specific codes are not compatible by all browsers so make sure to adapt a design that will be good if non-rounded is rendered by older browsers. Anyway, just to forethought the compatibility of some future browsers, this will give you a good shot.
Comments
Post a Comment