When I'm using the border-image property on a block, the interior portion of the block - where the content would go - remains transparent.
That's while my sprite image has a perfectly opaque white interior.
I can circumvent the problem by adding an internal div with the correct background, but that's unelegant. Is there a way to have the sprite's interior portion display without additional block workarounds? Thanks
Problem demo page (please view in Chrome)
Source:
<style type="text/css">
body { background: orange; padding: 30px; }
.filling { background: white; height: inherit; margin-top: -16px; }
.box {
margin: auto auto;
width: 200px; height: 200px;
border-width: 31px 25px 25px 20px;
-moz-border-image: url(image-border_sprite.png) 31 25 25 20 / 31px 25px 25px 20px stretch;
-webkit-border-image: url(image-border_sprite.png) 31 25 25 20 / 31px 25px 25px 20px stretch;
-o-border-image: url(image-border_sprite.png) 31 25 25 20 / 31px 25px 25px 20px stretch;
border-image: url(image-border_sprite.png) 31 25 25 20 / 31px 25px 25px 20px stretch;
}
</style>
<div class="box">
<p>Why does the page background show through??</p>
</div>
<br /><br />
<div class="box">
<div class="filling">
<p>It should look like this!</p>
</div>
</div>