私はこの開発分野にかなり慣れていないので、Phonegapを使用してiOSアプリの作成を理解しようとしています。解像度の異なる4つのCSSファイルを作成しました。
<link rel="stylesheet" media="only screen and (max-device-width: 1024px)" href="css/ipad.css" type="text/css" />
<link rel="stylesheet" media="only screen and (max-device-width: 2048px)" href="css/ipad-retina.css" type="text/css" />
<link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="css/iphone.css" type="text/css" />
<link rel="stylesheet" media="only screen and (max-device-width: 960px)" href="css/iphone-retina.css" type="text/css" />
デバイスを変更しても、シミュレーターは常に同じCSSファイルをロードすることがわかりました。cssファイルを正しくロードする方法はありますか?
人々に感謝します。ちなみに私のCSSの呼び出しは正しいですか?