0

メディアクエリを使用するための新しい標準はありますか? あるいは、いくつかの新しい考慮事項が必要であると言うべきかもしれません。

「スマートフォンの風景」がすべてをハイジャックしているように見えるため、CSS トリックの記事はあまりうまく機能していないようです。

私が使用したコードは直接取得しました(画面が何であるかを印刷することを除いて:

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
.size:after{ content: "smartphone portrait and landscape";}
body{background-color:#111; color:#fff;}
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
.size:after{ content: "smartphone landscape";}
body{background-color:#222; color:#fff;}
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
.size:after{ content: "smartphones portrait";}
body{background-color:#333; color:#fff;}
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
.size:after{ content: "ipad protrait and landscape";}
body{background-color:#444; color:#fff;}
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
.size:after{ content: "ipad landscape";}
body{background-color:#555; color:#fff;}
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
.size:after{ content: "iPads portrait";}
body{background-color:#666; color:#000;}
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
.size:after{ content: "desktops and laptops";}
body{background-color:#777; color:#000;}
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
.size:after{ content: "largscreens";}
body{background-color:#888; color:#000;}
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
.size:after{ content: "iPhone 4";}
body{background-color:#999; color:#000;}
}

テスト: www2.iscotest.com/screen.php

ワイドスクリーン、デスクトップ (1024)、iPad の横向き、iPad の縦向き、モバイルの縦向き、およびモバイルの横向きの作業標準セットがあります。

ありがとう!

4

2 に答える 2

1

リンクが表示されません。css メタ情報を追加しましたか?

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
于 2012-10-31T20:00:22.657 に答える
1

min-width と max-width を使用するだけです

于 2012-10-31T20:22:18.733 に答える