iPadタブレットデバイスを説明するために、min-widthとmax-widthで指定された@mediaに基づく条件付きCSSがあります。この条件付きCSSは、ヘッダー要素の下にイメージスライダーをオーバーレイするdivタグを処理します。これはPCでうまくいきますが、タブレットのdivタグはヘッダーの下にあり、画像スライダーの上にあるので、ブラウザウィンドウをドラッグしてdivを表示する必要があります。ドラッグを解除すると、ヘッダーの下に隠す。最小幅/最大幅に基づく条件付きCSSはAppleタブレットでは無視されます
以下のCSSがあります。タブ/タブレットの画面で、最小/最大値を別の値に変更しました。私は間違って何をしていますか?
@media (min-width: 801px) {
#searchIt {
position:absolute;
top: 25px;
z-index:100;
padding-left:14px;
padding-right:10px;
margin:auto !important;
clear:both !important;
width:100% !important;
max-width:1165px !important;
}
}
@media only screen
(max-device-width: 800px)
and (orientation: portrait) {
#searchIt {
position:absolute;
top: 250px !important;
z-index:100;
padding-left:14px;
padding-right:10px;
margin:auto !important;
clear:both !important;
width:100% !important;
max-width:1165px !important;
}
}
/* Landscape */
@media only screen
(max-device-width: 800px)
and (orientation: landscape) {
#searchIt {
position:absolute;
top: 250px !important;
z-index:100;
padding-left:14px;
padding-right:10px;
margin:auto !important;
clear:both !important;
width:100% !important;
max-width:1165px !important;
}
}
それは網膜のiPadアプリ3だ場合は、解像度を使用しているiPadの4は本当にありがとうございました...あなたは天の恵みの@mirある2048x1536px –