I have this line in my CSS:
.ui-icon-zoom-in { content: url(images/16x16/ZoomIn.png); }
Which I am using with jQuery UI Button widget like this:
$("#zoomin").button({ text: false, icons: { primary: "ui-icom-zoom-in" } });
In Chrome, I can see the image centered within the button. However, in IE10, I do not see the image.
Am I missing something here?