Rounded corners on Divs. Problem with Internet Explorer only!
Posted
by decbrad
on Stack Overflow
See other posts from Stack Overflow
or by decbrad
Published on 2010-04-06T12:36:29Z
Indexed on
2010/04/06
12:43 UTC
Read the original article
Hit count: 253
Has anybody experienced any problems with creating rounded corners on Divs? I am using the jQuery plugin from http://jquery.malsup.com/corner/
The problem is that the top corners are not rounding in Internet Explorer. Works fine with Firefox! Anybody got any advice?
Here's my code:
<script type="text/javascript">
$(document).ready(function() {
$("#panel").corner("10px");
});
</script>
Here's the div that gets rounded:
<div ID="panel">test</div>
© Stack Overflow or respective owner