Media Queries_02

ピクセル指定の時は
http://www38.atwiki.jp/soyjoynice/pages/56.html
で説明した感じで書けばいい。

デバイスの向きで指定したいときは

<link href="styleA.css" rel="stylesheet" type="text/css" media="only screen and (orientation: portrait)" >
<link href="styleB.css" rel="stylesheet" type="text/css" media="only screen and (orientation: landscape)" >

と書けばOK。
言うまでもなく
portrait = タテ
landscape = ヨコ ね。

(orientationとか微妙にObjCを彷彿とさせるよね)
(つーかもう色々ネイティブと同じでいいよ)

* * *
参考:
http://nonakaryuichi.me/memo/media-queries/
最終更新:2011年11月17日 11:17