メディア クエリに基づいてスタイルをインポートしようとしていますが、インポートが開始されません。スタイルをメディア クエリに直接配置すると、ページにレンダリングされます。
ライブ サイトへのリンクは次のとおりですhttp://update.techbasics.ca
これが、メディアクエリとインポートを含む私のstyle.cssです
デバッグに役立つ場合は、ワードプレスを使用しています。
@import url('base.css');
/******************************************************************
Site Name: Tech Basics
Author: Anders Kitson
Stylesheet: Main Stylesheet
Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
/*****************************************************************
BASE CSS
*****************************************************************/
/*****************************************************************
MEDIA QUERIES
*****************************************************************/
@media only screen and (min-width: 480px) {
@import url('min480.css');
}
@media only screen and (min-width: 600px) {
@import url('min600.css');
}
@media only screen and (min-width: 768px) {
body {
background: purple; } }
@media only screen and (min-width: 992px) {
body {
background: orange; } }
@media only screen and (min-width: 1382px) {
body {
background: url("../img/noisy_grid.png"); } }
/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) {
@import url('base.css');
}
ここに min600.css があります (style.css ファイルと同じディレクトリにあります)。
header {
text-align: left; }
body{
background: green;
}