First time run across this issue.
I have an element that is positioned to the right of the screen, like that
.element {
position:absolute;
right:0
}
Everything works as expected on desktop, but starting to fail apart on small screen devices. .element is no longer stuck to the right and appears rather on the left part. I suppose this is something to do with small screen devices ability to zoom in and out, but why this element not following the rule here.
PS. Tried with float:right, same effect.