I try to build a nice box with only 1 image and 1 div. Here is my code:
border-width: 14px;
-moz-border-image:url(box.png) 14 round;
-webkit-border-image:url(box.png) 14 round;
-o-border-image:url(box.png) 14 round;
border-image:url(box.png) 14 round;
And an example:
In Safari & Firefox, the background of the box is white, but in Chrome, its transparent.
Which browser is correct? I need the white background version, is there a fix to get this working in Chrome?
Thanks