On the web I've made, I've had problems with iPhones. With all the other devices it works correctly, both Android, Windows even with MacOS, with different browsers. But if I use Safari on iOS I have several problems, such as when watching a video:
<video autoplay loop muted>
<source src="../res/videos/video.mov">
</video>
With this code in all the browsers that open the web page the video is autoreproduced, instead the video with the play button comes out and if you give it the video opens, so to speak in a separate tab.
I also have a button to upload up that in all browsers is such that:
But when you open it with an iPhone it looks bad, where the arrow inside is not centered:
The button code:
<button id="upbutton" class="hidden"><i class="glyphicon glyphicon-chevron-up"></i></button>
#upbutton{
color:#FFFFFF;
position:fixed;
border-width:3px;
border-color:#FFFFFF;
border-radius:50%;
background-color:#337de6;
opacity:0.6;
bottom:90px;
right:30px;
width:60px;
height:60px;
font-size:30px;
z-index:100;
}