私はこれに1週間苦労しています。たくさんの投稿/ウェブ/ヒントとコツを読みましたが、これを理解することはできません.
さまざまな画面サイズと向きに合わせて CSS ルールを設定する必要があります。しかし、それが機能していないという認識。
私は試してみました:min-width、max-width、min-height、max-height、min-device-width、max-device-width、min-device-height、max-device-height、向き:縦、向き: 横向き、メディア="画面のみおよび (最大..."、メディア="画面および (最大..."、メディア="(最大.."))、あらゆる種類の組み合わせ、これはすべての場合には機能しません解像度と向き。
これは例です:
<link rel="stylesheet" href="css/iscroll.css" />
<link rel="stylesheet" href="css/iscroll_600.css" type="text/css" media="only screen and (max-width: 600px) and (max-height: 1024px) and (orientation: portrait)"/>
<link rel="stylesheet" href="css/iscroll_600.css" type="text/css" media="only screen and (max-width: 1024px) and (max-height: 600px) and (orientation: landscape)"/>
<link rel="stylesheet" href="css/iscroll_1280.css" type="text/css" media="only screen and (max-width: 800px) and (max-height: 1280px) and (orientation: portrait)"/>
<link rel="stylesheet" href="css/iscroll_1280.css" type="text/css" media="only screen and (max-width: 1280px) and (max-height: 800px) and (orientation: landscape)"/>
どうすればこの問題に対処できますか? ありがとう
dhcメガ