我试图导入基于掀起了媒体查询的风格,但进口没有被触发,如果我把风格直接在渲染页面的媒体查询。
下面是对活动网站的链接http://update.techbasics.ca
这是我的style.css与媒体查询和进口
我使用WordPress的,是否可以帮助调试。
@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;
}