show/hide this revision's text 2 improved the implementation to use sprite sheets
<div class="TopLeftclass="RoundedCorner RoundedCorner-TopLeft"></div> <div class="TopRightclass="RoundedCorner RoundedCorner-TopRight"></div> <div class="BottomRightclass="RoundedCorner RoundedCorner-BottomRight"></div> <div class="BottomLeftclass="RoundedCorner RoundedCorner-BottomLeft"></div>padding-left: 5px; padding-right: 5px; background-color: #ffffff; topbackground-image: 0url('SpriteSheet.png'); leftbackground-repeat: 0no-repeat; overflow: hidden; /* Size of the rounded corner images */.Rounded .RoundedCorner-TopLeft top: no-repeat0; background-imageleft: url(/0; /* path to rounded corner image for TopLeft No background position change (or maybe depending on your sprite sheet) */); position: absolute; height: 5px; width: 5px; background-repeat: no-repeat; background-image: url(//* path Move the sprite sheet to rounded corner show the appropriate image for TopRight */); background-position: -5px 0; position: absolute; height: 5px; width: 5px; background-repeat: no-repeat; background-image: url(//* path Move the sprite sheet to rounded corner show the appropriate image for BottomLeft */); background-position: 0 -5px; position: absolute; height: 5px; width: 5px; background-repeat: no-repeat; background-image: url(//* path Move the sprite sheet to rounded corner show the appropriate image for BottomRight */); background-position: -5px -5px;

As mentioned, it has its limits (the background behind the rounded box should be plain otherwise the corners won't match the background), but it works very well for anything else.

Updated: Improved the implentation by using a sprite sheet.

show/hide this revision's text 1

There's always the JavaScript way (see other answers) but since it's is purely styling, I'm kind of against use client scripts to achieve this.

The way I prefer (though it has its limits), is to use 4 rounded corner images that you will position in the 4 corners of your box using CSS:

<div class="Rounded">
    // content
    <div class="TopLeft"></div>
    <div class="TopRight"></div>
    <div class="BottomRight"></div>
    <div class="BottomLeft"></div>
</div>


/********************************
* Rounded styling
********************************/

.Rounded
{
    position: relative;

    padding-left: 5px;
    padding-right: 5px;

    background-color: #ffffff;
}

.Rounded .TopLeft
{
    position: absolute;

    top: 0;
    left: 0;

    height: 5px;
    width: 5px;

    background-repeat: no-repeat;
    background-image: url(/* path to rounded corner image for TopLeft */);
}

.Rounded .TopRight
{
    position: absolute;

    top: 0;
    right: 0;

    height: 5px;
    width: 5px;

    background-repeat: no-repeat;
    background-image: url(/* path to rounded corner image for TopRight */);
}

/* Hack for IE6 */
* html .Rounded .TopRight
{
    right: -1px;
}

.Rounded .BottomLeft
{
    position: absolute;

    bottom: 0;
    left: 0;

    height: 5px;
    width: 5px;

    background-repeat: no-repeat;
    background-image: url(/* path to rounded corner image for BottomLeft */);
}

/* Hack for IE6 */
* html .Rounded .BottomLeft
{
    bottom: -20px;
}

.Rounded .BottomRight
{
    position: absolute;

    bottom: 0;
    right: 0;

    height: 5px;
    width: 5px;

    background-repeat: no-repeat;
    background-image: url(/* path to rounded corner image for BottomRight */);
}

/* Hack for IE6 */
* html .Rounded .BottomRight
{
    bottom: -20px;
    right: -1px;
}


As mentioned, it has its limits (the background behind the rounded box should be plain otherwise the corners won't match the background), but it works very well for anything else.