画面サイズ別にCSSを切り替え
'15.09.17画面のサイズが480px以下
<link rel="stylesheet" href="phone.css" type="text/css" media="screen and (max-width: 480px)">
画面のサイズが900px以上
<link rel="stylesheet" href="pc.css" type="text/css" media="screen and (min-width: 900px)">
(View:409)