In landscape orientation on the iPhone 6 Safari renders the desktop styles rather than the mobile styles despite the fact I have adjusted my media query ranges according to the new iPhone dimensions. In portrait mobile styles are displayed as expected.
When I rotate the phone from portrait to landscape the mobile styles are seen briefly before being overridden and the desktop styles are seen.
When using Chrome the website behaves as expected in landscape and the mobile styles are rendered.
The website is built using Zurb Foundation 5. Is there a way to force Safari to obey the media queries?
Thanks in advance
EDIT:
The problem seems to be that Chrome and Safari interpret the meta viewport tag differently.
This is my original code which works fine in Chrome, and Safari in portrait.
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
Changing to this makes Safari display correctly although there is zooming in both Chrome and Safari as there is no scaling at all.
<meta name="viewport" content="width=device-width, user-scalable=no" />
Adding any of these: initial-scale=1.0,
maximum-scale=1.0,
minimum-scale=1.0,
cause Safari to display the desktop styles but Chrome to behave as expected i.e mobile styles in both portrait and landscape without zooming.
Is there a way to conditionally load different viewport meta tags targeting different browsers?