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.

This is the image

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;
}
link|improve this question
1  
Please format your code properly. Don't use > for formatting code; indent each line with four spaces instead. – BoltClock Jan 15 at 17:38
I edited that to correct it. – Milad Naseri Jan 15 at 17:44
Putting a second div inside the first, and making that background-color: white comes to mind – Pekka Jan 15 at 17:51
"However, on chrome, it doesn't fill up the center of the div with the appropriate color and it's transparent." No, it does. Your border-image is 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
feedback

2 Answers

rather than using border image, I think I would set this image as the background of my div and used padding to position the text inside...

#post-wrap {
    margin: auto;
    padding: 0px 40px 70px 40px;
    background: transparent url(http://www.nicxtay.com/wp-content/uploads/2012/01/postbackground.png) no-repeat top left;
}
link|improve this answer
feedback

You simply need to add "fill" for it to include the background.

border-image: url(http://www.nicxtay.com/wp-content/uploads/2012/01/postbackground.png)     96 17 15 36 fill repeat;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.