I make this site, and I created settings for mobile devices, tablet, laptop, desktop. He looked good on all the other phones. I havent 'tested it yet on the actual tablet, but it works fine on the Chrome browser emulator.
However, my friend checked the site in his Iphone6 Plus, and the navigator settings were corrupted. By the way, I use Bootstrap 3 for the frame.
I am confused why my code works on other phones, but not on Iphone6 Plus. Perhaps Iphone6 has the same problem?
Here are my media css:
@media only screen and (max-width : 768px) and (orientation: portrait) { } @media only screen and (max-width : 480px) and (orientation: portrait) { } @media only screen and (max-width : 480px) and (orientation: landscape){ } @media only screen and (max-width :1100px) and (orientation: landscape) { } @media only screen and (min-width : 992px) { } @media only screen and (min-width : 1601px) { }
I already checked online that the pixel density and resolution for the Iphone6 Plus are very different. We tried the solution from here: iPhone 6 and 6 Plus Media Queries
Until now, even these queries have not resolved our problem. It seems that there were no changes. I hope this problem can be resolved quickly, I appreciate your help.
source share