Try this in the DevTools console:
var elem = document.querySelector("your-selector");
var styl = window.getComputedStyle(elem);
styl.backgroundPosition
If that returns the same values under the same conditions, I’d trust it as correct.
Try this in the DevTools console:
var elem = document.querySelector("your-selector");
var styl = window.getComputedStyle(elem);
styl.backgroundPosition
If that returns the same values under the same conditions, I’d trust it as correct.