Here is a nice little 'Nifty' tool that I would like to share with you. It's called Nifty and using only CSS and Javascript it can create you rounded corner boxes without the use of images. For more have a look here: http://webdesign.html.it/articoli/le...fty-corners/1/
CSS 3 rounded corners:
I'd just like to add that considering more of the modern browsers are supporting CSS 3 rounded corners, you may want to elect to use CSS 3 rounded corners. The border-radius CSS property is supported in al the major web browsers: Internet Explorer 9 and above, Firefox 3 and above, Chrome 4 and above, Safari 3.1 and above (and iOS Safari 3.2 and above), Opera 10.5 and above, Opera mobile 11.0 and above, Android browser 2.1 and above, BlackBerry browser 7.0 and above, Chrome for Android 18 and above and Firefox for Android 15 and above.
Some of the older versions of Firefox, Safari and iOS Safari required the use of proprietary CSS properties such as -webkit-border-radius. As well as using the as-yet draft border-radius property, also make use of the proprietary rounded corner properties for older versions of Firefox, Chrome, Safari, iOS Safari and Android browser. This includes -moz-border-radius and -webkit-border-radius.
Hope this helps.
(Info about CSS 3 corners relayed on page 3 of this thread).
CSS 3 rounded corners:
I'd just like to add that considering more of the modern browsers are supporting CSS 3 rounded corners, you may want to elect to use CSS 3 rounded corners. The border-radius CSS property is supported in al the major web browsers: Internet Explorer 9 and above, Firefox 3 and above, Chrome 4 and above, Safari 3.1 and above (and iOS Safari 3.2 and above), Opera 10.5 and above, Opera mobile 11.0 and above, Android browser 2.1 and above, BlackBerry browser 7.0 and above, Chrome for Android 18 and above and Firefox for Android 15 and above.
Some of the older versions of Firefox, Safari and iOS Safari required the use of proprietary CSS properties such as -webkit-border-radius. As well as using the as-yet draft border-radius property, also make use of the proprietary rounded corner properties for older versions of Firefox, Chrome, Safari, iOS Safari and Android browser. This includes -moz-border-radius and -webkit-border-radius.
Code:
/* A few examples */ border-radius: 10px; /* All sides */ border-top-left-radius: 10px; /* One side */ -moz-border-radius: 10px; /* All sides */ -webkit-border-radius: 10px; /* All sides */
(Info about CSS 3 corners relayed on page 3 of this thread).
Comment