CSS image does not work in Opera

In my application, I use border imagein css, but it does not work in Opera. So how can it be supported by Opera?

+5
source share
2 answers

Try using: -o-border-image: url(...);This is for Opera. You also have -moz-border-image: url(...);for older Firefox and -webkit-border-image: url(...);for Safari, Konqueror, etc.

+10
source

This is sample code from w3schools

div
{
border-image:url(border.png) 30 30 round;
-moz-border-image:url(border.png) 30 30 round; /* Firefox */
-webkit-border-image:url(border.png) 30 30 round; /* Safari and Chrome */
-o-border-image:url(border.png) 30 30 round; /* Opera */
} 

This is also well explained here .

+6
source

All Articles