Ok here is where I am stuck. Microsoft IE for RT interprets my media queries out of sync when in snap mode.
There is one font that is overly padded and thus spilling over to the next line.
My question is If I write out my media queries, which for every major browser work fine, and the only problem is with the different mode sizes for IE|RT is there anyway to specify just using the @-ms-viewport {css style here}? I was thinking perhaps even write a separate media query just for the viewport but that would just override my other media queries wouldn't it?
And Interestingly the mail app for RT uses media queries fine.
See this code just doesn't fit right with IE|RT in snap mode: From MSDN BLOG...
@media screen and (max-width: 400px) {
@-ms-viewport { width: 320px; }
/* CSS for 320px layout goes here */
}
For now I just hammer shut it off with this designation. Which doesn't seem to work for WP8.
@-ms-viewport { width: device-width; }
p.s. The microsoft Windows phone 8 media queries + viewport is a complete bug. Keeps crashing.