I have an image, that I created with border CSS. However, on chrome, it doesn't fill up the center of the div with the appropriate color and it's transparent.

When I put a background to white, it interferes with the transparency of the borders, which is why I couldn't put it in. Is there another way around this (cross browser compatible of course)?
#post-wrap {
margin:auto;
padding: 0px 40px 70px 40px;
width: 850px;
border-width: 96px 17px 15px 36px;
-moz-border-image: url(http://www.nicxtay.com/wp-content/uploads/2012/01/postbackground.png) 96 17 15 36 repeat;
-webkit-border-image: url(http://www.nicxtay.com/wp-content/uploads/2012/01/postbackground.png) 96 17 15 36 repeat;
-o-border-image: url(http://www.nicxtay.com/wp-content/uploads/2012/01/postbackground.png) 96 17 15 36 repeat;
border-image: url(http://www.nicxtay.com/wp-content/uploads/2012/01/postbackground.png) 96 17 15 36 repeat;
}
>for formatting code; indent each line with four spaces instead. – BoltClock♦ Jan 15 at 17:38divinside the first, and making thatbackground-color: whitecomes to mind – Pekka Jan 15 at 17:51border-imageis white in the center block, thus - it fills the content of the box. You must make that part of your image transparent. – c69 Jan 15 at 21:49