My website includes the following code in the section:
<meta name="viewport" content="width=990"/>
This setting helps to display my webpage well on mobile devices, as using width=device-width causes issues with elements that have 100% width. However, there is a side effect - on certain browsers like IE Mobile 10, some fonts appear larger. It's strange because all elements on my site use the same CSS and only a few are affected by this issue. I'm unsure why this is happening.
Is there a way to prevent the browser from enlarging the font size on mobile devices and keep it consistent pixel-by-pixel as on desktops? Would changing the meta tag or adding something to the CSS help?
I've been searching for a solution for a while with no success. Any assistance on this matter would be greatly appreciated.
Thank you in advance!