I want to use an image as a border and found the following code:
-moz-border-image: url(".....
-webkit-border-image: url(".....
border-image: url(".....
what had missing is the opera property like transition has: -o-transition
Would it be wise to add it as
-o-border-image
or is it not necessary ?
The shorthand
border-image
is somehow buggy on most older browsers. Better use the seperate properties:The
border-image-repeat
property was buggy for a long time.So I think it's better to use the seperate
border-image-___
properties and avoid usingborder-image-repeat
to support older browsers. In this way you don not have to use the -moz-, -webkit-, or -o- prefixes.