Can someone help to point out why this http://www.malsup.com/jquery/corner/image.html does not show up correctly in Firefox? Top corners are not rounded.
Thanks.
jQuery Corner for Image on Firefox Issue
Moderator: General Moderators
Re: jQuery Corner for Image on Firefox Issue
Since image is after the top corners in the markup and z-index is not applies to none of the layers, then all layers are rendered in order as they appear in markup.
Add following to your CSS:
Add following to your CSS:
Code: Select all
.jquery-corner {
position: relative;
z-index: 1;
}Re: jQuery Corner for Image on Firefox Issue
Got it. Thanks