CSS のみを使用して、サイトのモバイル再設計を行っています。
デスクトップまたはモバイルのいずれかに適切な css を提供する次のメディア クエリを用意します。
ただし、ブラウザのサイズを 855 未満に変更すると、デスクトップには引き続きモバイル css が表示されます (一部のモバイル css ファイルのみのようですが)。
デスクトップがモバイルCSSをロードしないようにするにはどうすればよいですか?
ありがとう
<link rel="stylesheet" type="text/css" href="css/layout.css" media="Screen and (min-device-width:855px),projection" />
<link rel="stylesheet" type="text/css" href="css/nav.css" media="Screen and (min-device-width:855px),projection" />
<link rel="stylesheet" type="text/css" href="css/type.css" media="Screen and (min-device-width:855px),projection" />
<link href="css/mobile.css" type="text/css" media="handheld, handheld and (max-device-width: 854px), only screen and (max-device-width: 854px), only screen and (max-width:854px)" rel="stylesheet" />
<link href="css/mobile-nav.css" type="text/css" media="handheld, handheld and (max-device-width: 854px), only screen and (max-device-width: 854px), only screen and (max-width:854px)" rel="stylesheet" />
<link href="css/mobile-type.css" type="text/css" media="handheld, handheld and (max-device-width: 854px), only screen and (max-device-width: 854px), only screen and (max-width:854px)" rel="stylesheet" />
敬具