Forum Moderators: phranque
As in the example you gave, rounded borders are usually done with a simple table layout and small graphics files for the rounded corners.
Given that it's just a simple table, there's no compatability issues with any of the common browsers.
As for design, I guess that comes down to an issue of taste and whether they suit the style you're aiming for.
Personally I haven't used them on any of my sites except one where they particularly suited the style. In fact I've just taken them off a template for a new site today.. they didn't add to the design, and cutting out that little bit of extra table code and getting rid of those little gifs adds up to a little more saving in speed and bandwidth over a 2,000 page site.
1) the way it's *mostly* done at present is by using a 3x3 table with the four corner cells being *.img's
2) by using css absolute positioning, you can make a div like this:
<div style="position: relative">
<img style="position: absolute; top: aapx; left: bbpx" alt="TopLeftCorner">
etc ...
</div>
(some details ommitted, but you get the idea, I hope)
3) Mozilla has a rather un-documented css-extension that rather close to a proposed w3c css3 : [lists.w3.org...]
For the future we have:
4) [w3.org...]