2011-01-23から1日間の記事一覧

iPhone/iPod Touch/iPad 縦と横とでcssを切り替える

外部のスタイルシートを使わない場合 <style type="text/css"> @media screen and (orientation:portrait) { h1 { color:red; } body { line-height:1.8; font-size:120%; } } @media screen and (orientation:landscape) { h1 { color:green; } body { line-height:1.8; } } </style> 外部…