I have a mobile website created using ASP.NET MVC and jQuery Mobile. In the MainLayout page I load the CSS in the header from Google CDN.
<head>
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.css" />
</head>
The page first loads without the style and then after 10-20 milliseconds the page formats itself to the correct style. This all results in a small flicker which is quite noticeable. How can I resolve this issue?