I have a div with a textured border-image with fill enabled. This displays fine on modern browsers. However, when using an older browser without border-image support, ive created a fall-back to a rounded corner border. On IE ( 9, 10 ) I get a very thin vertical gap between the content and the right border. Sometimes the gap isnt there, but scaling my browser window horizontally makes the gap flicker on and off.
Heres a JSfiddle highlighting the problem: http://jsfiddle.net/67tG6/8/
CSS
.menu_tab {
width: 90px;
height:250px;
background: rgb(230,140,130);
border: 28px solid rgb(230,140,130);
border-image: url("http://chromafunk.com/images/menu_tab.png") 30 30 40 30 fill round;
border-radius: 20px;
border-top: 0px;
background-clip: padding-box;
}
HTML
<div class="menu_tab"></div>
An image of the gap:
If I remove either the border-radius or the background-clip, the problem goes away. However the background-clip needs to exist for the border-image capable browsers. So I would like to fix the problem with the radius and clip still there.
Anybody have any thoughts regards this?