I am currently working on a Drupal 6 theme for which the designer is clearly asking for the use of LOT rounded corners.
I could, of course, create rounded corners - traditionally - with images. But I know that there should also be better and simpler ways to create rounded corners.
Optimally, I would like to write my CSS as standardized CSS3, with selectors like:
h2 {border-radius: 8px;}
Using browser-specific CSS is also very good, for example
h2 {-moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px;}
If necessary, I can also insert some custom JavaScript manually. I just want to not add another 100 rounded corner images to my markup.
Any suggestions on the best approach?
css3 drupal web-standards rounded-corners drupal-modules
jsalonen
source share