vote up 4 vote down star
2

Does anyone know a way to get Firefox to crop the corners if the border radius of an image is set? It's containing element will work fine but I get ugly corners sticking out.

Any way to fix this without setting the image as a background image or processing it before I put it on my site?

flag

2 Answers

vote up 2 vote down check

Does it not crop if you apply the border radius directly to the img element? There are known issues with -moz-border-radius as far as contained content is concerned.

--edit

OK, it doesn't crop img either. If your image is some sort of png/gif on a solid background you may be able to do something like this:

img {
    border: 10px solid white;
    -moz-border-radius: 10px;
}

But if you're trying to get rounded corners on a photo then it's not going to work in 3.5.

link|flag
I already am using a border of 2px. I might have to remove border radiuses from these elements and wait until Mozilla gets it's act together. This might just have to be another "progressive enhancement" only for WebKit users. – dougoftheabaci Aug 28 at 17:07
Been playing around with SVG and hit upon a way to get rounded corners on an image element: boogdesign.com/examples/svg/… Will only work in Firefox 3.5 and quite probably too much work, but interesting. I'll write up a blog post about it at the weekend. – robertc Sep 2 at 14:06
OK, didn't wait until the weekend: boogdesign.com/b2evo/index.php/… – robertc Sep 2 at 17:22
vote up 2 vote down

Workaround: Set the image as the background of a container element, then add border radius on that element.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.