I'm inquiring about an issue with Safari Mobile and the CSS object-position/object-fit
property.
I attempted to use it, but unfortunately, it's not working for me.
I've come across conflicting answers regarding Safari Mobile's support for this property.
Here is an example of my code:
img {
object-position: 0 -300px;
width: 112px;
height: 50px;
display: block;
float: left;
margin-right: 10px;
}
I am using CSS sprites for menu icons as img
tags, not as background
.
Any suggestions on how to resolve this issue?