corner plugin bug
corner plugin bug
I am not sure can I call it a bug
if I use use
corner
plugin on two divs which one is including another, it will be failed on IE7 or IE8
have any solutions?
demo page
Chrome
IE7/8
CSS
<style>
body {
font-size: 12px;
background: black;
}
.box-outside {
width: 201px;
height: 200px;
background: yellow;
}
.box-inside {
width: 199px;
margin: 0 0 0 1px;
height: 190px;
background: blue;
}
</style>
JS
<script>
$(function() {
$('.box-outside, .box-inside').corner();
});
</script>
HTML
<div class="box-outside">
<div class="box-inside"></div>
</div>
Topic Participants
chan15tw