Rounded corners of an image in IE and Firefox
I cannot make the image a background image for the div and around the corners of the div, because the image changes, and as far as I know, you cannot resize the background image.
What are my options, if any? Open to all suggestions, including cover dividers and corner images.
Also, if it is not possible to do this in IE, but there is a solution for Firefox, this is just fine with me.
a source to share
If you are reusing the image and resizing, you should split your corners appropriately if possible. I took a quick look at you and here's a site that shows you how to achieve it using sprites. This makes your markup bigger because you need to use positioned divs to position each part of the window.
Of course, the latest versions of Firefox, Safari, Opera and Chrome support border-radius , which allows you to create rounded corners without using images, IE9 will also support this when it is released.
I've seen sites that use a border radius and just leave it at that, so the borders aren't rounded in browsers that don't support it.
a source to share