It works, but that browser expects a slightly different syntax. Not in the border-image property itself, but in the preparation for it. The item must also have border-style, not just border-width as used for the demo. Example:
Code:
.imageborder{
border-width: 20px;
border-style: solid;
-moz-border-image: url(frame.gif) 20 stretch; /*Mozilla version*/
-webkit-border-image: url(frame.gif) 20 stretch; /*Webkit version*/
-o-border-image: url(frame.gif) 20 stretch; /*Opera version*/
-ms-border-image: url(frame.gif) 20 stretch; /*IE syntax when it does support this prop*/
border-image: url(frame.gif) 20 stretch; /*Standard version*/
}
Bookmarks