After testing the code below, it appears to be working on both Safari and Chrome.
I am seeking a hack specifically for Safari, not Chrome
.contactDiv img:not(:root:root) {
margin-top:-75px;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.contactDiv img{
margin-top:-75px;
}
}
Although both browsers support it, I would like this adjustment to only apply in Safari.