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.
|
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. |
||||
|
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:
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. |
||||