I have the following problem: jsfiddle.
As you can see from the example, Opera (ver. 12.16) doesn't clip the borders of the image that is positioned inside a div. It returns a div with rounded corners, but fails to hide overflowed image corners. In other browsers no such problem persists. My code:
<div style="overflow:hidden; border-radius:200px; width:200px; height:200px; border:1px solid black;">
<img src="http://www.blogcdn.com/www.autoblog.com/media/2012/06/lamborghini-aventador-f16-fighting-falcon.jpg" style=" width:200px; height:200px; ">
</div>
Is there a way to solve this?