I have a div whith the following style:
.pricemark {
background: url(/Files/System/ui/vispris.png) no-repeat scroll 0 0 transparent;
background-position: center center;
background-size: 110%;
background-size: 30%\9; }
However, in IE8 and below the image-size 110% is interpreted as 110% of the image size whereas all other browsers sees this as the div size.
Hence, in IE8 and below it's not shown correct. I've attempted the hack:
background-size: 30%\9;
But the result is still the same. Any ideas?
