I am currently working on a Drupal 6 theme, for which designer is explicitly requesting to use A LOT of rounded corners.
I could of course create the rounded corners - traditionally - with images. But I know there must be also better and easier ways of creating rounded corners.
Optimally, I would like to write my CSS as standards-compliant CSS3, with selectors like:
h2 {border-radius: 8px;}
Use of browser-specific is CSS is very OK also, like
h2 {-moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px;}
If required, I can also insert some custom JavaScript by hand. I just want to avoid adding yet another 100 rounded corner images to my markup.
Any suggestions on the best approach?