In my application I use border image
in css, but it's not working in Opera. So how can it be supported by Opera?
Try to use: -o-border-image: url(...);
It's for Opera. You've got also -moz-border-image: url(...);
for older Firefoxes and -webkit-border-image: url(...);
for Safari, Konqueror, etc.
This is a 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 nicely explained here.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With