LoginSignup
5
6

More than 5 years have passed since last update.

HTML1ソースでつくるときに、PCとSPでcssを完全に分けたいとき

Posted at
<link rel="stylesheet" href="pc.css" media="only screen and (min-width: 640px)" type="text/css">
<link rel="stylesheet" href="sp.css" media="only screen and (max-width: 640px)" type="text/css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="pc.css" media="screen" type="text/css">
<![endif]-->

メディアクエリーで分けるとIE8以下にスタイルが適用されなくなってしまうので、
条件つきコメントでIE8以下にも読み込まれるようにする。

5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6