Given any element selector return computed css styles

PHOTO EMBED

Fri Mar 11 2022 01:28:05 GMT+0000 (Coordinated Universal Time)

Saved by @Trillzilla #javascript

var element = document.getElementById('image_1'),
    style = window.getComputedStyle(element),
    top = style.getPropertyValue('top');
    console.log(top);
content_copyCOPY