CSS3 媒体选择器的使用方式
CSS3导入的三种形式:
<link media="(max-width:960px)" href="css/doc1.css" rel="stylesheet" type="text/css"> @media screen and (device-width:1024px){ … } @import url(example.css) screen and (min-device-width:800px);
<link media="(max-width:960px)" href="css/doc1.css" rel="stylesheet" type="text/css"> @media screen and (device-width:1024px){ … } @import url(example.css) screen and (min-device-width:800px);