I've been attempting to round the corners of the image within the frame, but for some reason, I am unable to achieve it. I'm using the basic border-image property and trying to use the border-radius property to get those curved corners. However, something seems to be going wrong in my code. Can someone please take a look at the syntax below:
<img src="http://blog.queensland.com/files/2013/08/Damien-Leze_WIDE_ANGLE_1.jpg" class="frame">
Here is the CSS code I have been working with:
img.frame {
border-image: url('http://thumbs.dreamstime.com/x/het-ionen-frame-van-het-water-55454.jpg') 80 80 82 84 repeat repeat;
border-width: 60px;
height: 300px;
width: 500px;
}